ci: add a mypy stage

This commit is contained in:
mathieui 2021-07-05 22:44:41 +02:00
parent de6c19c9cd
commit 42ca51e2b1

View file

@ -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: