diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11b5f5a42..2a488ce22 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,16 @@ code-quality: script: - python3 -m flake8 container plinth actions/* +static-type-check: + stage: test + allow_failure: true + needs: [] + before_script: + - apt-get update + - apt-get install -y mypy + script: + - mypy --ignore-missing-imports . + unit-tests: stage: test needs: []