diff options
author | mathieui <mathieui@mathieui.net> | 2021-07-05 22:44:41 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-07-05 22:44:41 +0200 |
commit | 42ca51e2b148b8a4d9b35753db1fa422c241f590 (patch) | |
tree | a7e502843113a52083d68385f88d998c1a0ea52a | |
parent | de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8 (diff) | |
download | slixmpp-42ca51e2b148b8a4d9b35753db1fa422c241f590.tar.gz slixmpp-42ca51e2b148b8a4d9b35753db1fa422c241f590.tar.bz2 slixmpp-42ca51e2b148b8a4d9b35753db1fa422c241f590.tar.xz slixmpp-42ca51e2b148b8a4d9b35753db1fa422c241f590.zip |
ci: add a mypy stage
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3aa76989..48c6be9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,17 @@ stages: + - lint - test - trigger +mypy: + stage: lint + tags: + - docker + image: python:3 + script: + - pip3 install mypy + - mypy slixmpp + test: stage: test tags: |