We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c5acb commit 4d2770eCopy full SHA for 4d2770e
.drone.yml
@@ -18,6 +18,13 @@ steps:
18
commands:
19
- bandit -r src/
20
21
+- name: MyPy
22
+ image: abcminiuser/docker-ci-python:latest
23
+ pull: always
24
+ commands:
25
+ - pip install mypy
26
+ - mypy --ignore-missing-imports src/
27
+
28
- name: Tests
29
image: abcminiuser/docker-ci-python:latest
30
pull: always
@@ -41,5 +48,6 @@ steps:
41
48
depends_on:
42
49
- Flake8
43
50
- Bandit
51
+ - MyPy
44
52
- Tests
45
53
- Documentation
0 commit comments