diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 57e3859ab0fb8b7a275a04554238ad519d79f46c..45de7904281a3382a74c9d2f3c41c16e0d1e085f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,13 +52,20 @@ build: script: - poetry build -check: +type: extends: - .changes stage: checks script: - poetry install - make mypy + +lint: + extends: + - .changes + stage: checks + script: + - poetry install - make pylint .tests: