Skip to content

Commit 5d746bf

Browse files
committed
Add mypy to CI
1 parent 725a1cd commit 5d746bf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test_for_python_test_example.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
- name: Install Library
1616
run: |
1717
python3 -m pip install --upgrade pip
18-
pip install requests flask
18+
pip install requests flask mypy
1919
- name: Run unittest
2020
run: |
2121
cd python_test_example
2222
python3 -m unittest discover --verbose --pattern "*_test.py"
23+
- name: Run mypy
24+
run: |
25+
mypy .

0 commit comments

Comments
 (0)