diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b404227..e7200a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,6 @@ +include: + - template: Code-Quality.gitlab-ci.yml + default: image: python:3.9-alpine before_script: @@ -9,6 +12,7 @@ default: stages: # List of stages for jobs, and their order of execution - stage-1 + - test build-wheel: @@ -31,5 +35,11 @@ pylint: paths: - pylint.svg +code_quality: + stage: test + image: docker:latest + artifacts: + reports: + codequality: gl-code-quality-report.json