We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba8fb6 commit 459a614Copy full SHA for 459a614
.gitlab-ci.yml
@@ -42,6 +42,18 @@ test-python-package:
42
coverage_format: cobertura
43
path: coverage.xml
44
45
+lint-python-package:
46
+ stage: test
47
+ before_script:
48
+ # TODO: Add flake8-gl-codeclimate as dependency
49
+ - pip install flake8-gl-codeclimate
50
+ - pip install uv
51
+ script:
52
+ - uv run --all-extras flake8 src/python_training_project --format gl-codeclimate --output-file gl-code-quality-report.json
53
+ artifacts:
54
+ reports:
55
+ codequality: gl-code-quality-report.json
56
+
57
deploy-python-package:
58
stage: deploy
59
before_script:
0 commit comments