From 89bfe2dbf6ea70fa57e59373c634524b372b282a Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Fri, 14 Feb 2020 18:03:11 +0200 Subject: [PATCH] [ci] #118: Split mypy and pylint jobs for more clarity and atomicity --- .gitlab-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ba677b85..4421a777 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: -- GitLab