Skip to content

Commit 4d2770e

Browse files
committed
Drone: Add MyPy checks.
1 parent 75c5acb commit 4d2770e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.drone.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ steps:
1818
commands:
1919
- bandit -r src/
2020

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+
2128
- name: Tests
2229
image: abcminiuser/docker-ci-python:latest
2330
pull: always
@@ -41,5 +48,6 @@ steps:
4148
depends_on:
4249
- Flake8
4350
- Bandit
51+
- MyPy
4452
- Tests
4553
- Documentation

0 commit comments

Comments
 (0)