Skip to content

Commit f1ce275

Browse files
authored
build.yml: Run mypy --ignore-missing-imports
1 parent 9875673 commit f1ce275

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip setuptools six wheel
2323
python -m pip install pytest-cov -r requirements.txt
24+
# FIXME: #4052 fix mypy errors in other directories and add them here
25+
- run: python3 -m mypy --ignore-missing-imports
26+
arithmetic_analysis
27+
backtracking
28+
bit_manipulation
29+
blockchain
30+
boolean_algebra
31+
cellular_automata
32+
computer_vision
33+
digital_image_processing
34+
fuzzy_logic
35+
genetic_algorithm
36+
geodesy
37+
knapsack
38+
networking_flow
39+
scheduling sorts
2440
- name: Run tests
2541
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
2642
- if: ${{ success() }}

0 commit comments

Comments
 (0)