ci: add a mypy stage
This commit is contained in:
parent
de6c19c9cd
commit
42ca51e2b1
1 changed files with 10 additions and 0 deletions
|
@ -1,7 +1,17 @@
|
||||||
stages:
|
stages:
|
||||||
|
- lint
|
||||||
- test
|
- test
|
||||||
- trigger
|
- trigger
|
||||||
|
|
||||||
|
mypy:
|
||||||
|
stage: lint
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
image: python:3
|
||||||
|
script:
|
||||||
|
- pip3 install mypy
|
||||||
|
- mypy slixmpp
|
||||||
|
|
||||||
test:
|
test:
|
||||||
stage: test
|
stage: test
|
||||||
tags:
|
tags:
|
||||||
|
|
Loading…
Reference in a new issue