Skip to content
Snippets Groups Projects
Commit 2cdf882e authored by Jonas Höppner's avatar Jonas Höppner
Browse files

CI: Enable analyze stage again in .gitlab-ci.yml again

parent 26bd3edf
No related branches found
No related tags found
1 merge request!101CI: Create pipeline to deploy changes in gitlab-ci to all subprojects, include all CI implementations from there.
......@@ -29,29 +29,29 @@ workflow:
# ---------------------------------------------------------------------------------------
# Stage: analyze
# ---------------------------------------------------------------------------------------
# pylint:
# stage: analyze
# timeout: 2m
# script:
# - pylint --rcfile=pylintrc *.py
#
# black:
# stage: analyze
# timeout: 2m
# script:
# - black --diff --check *.py
#
# executable:
# stage: analyze
# timeout: 2m
# script:
# - (! find ! -executable -name "*.py" -exec echo "not executable:"" {}" \; | grep .)
#
# yamllint:
# stage: analyze
# timeout: 2m
# script:
# - yamllint -c .yamllint.yml *.yml .*.yml
pylint:
stage: analyze
timeout: 2m
script:
- pylint --rcfile=pylintrc *.py
black:
stage: analyze
timeout: 2m
script:
- black --diff --check *.py
executable:
stage: analyze
timeout: 2m
script:
- (! find ! -executable -name "*.py" -exec echo "not executable:"" {}" \; | grep .)
yamllint:
stage: analyze
timeout: 2m
script:
- yamllint -c .yamllint.yml *.yml .*.yml
# ---------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment