We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673d60e commit 8f0aaa8Copy full SHA for 8f0aaa8
1 file changed
.github/workflows/python-package.yml
@@ -26,8 +26,8 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- pip install flake8 pytest
30
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ pip install flake8 pytest mypy
+ pip install -U .
31
- name: Lint with flake8
32
33
# stop the build if there are Python syntax errors or undefined names
@@ -37,3 +37,6 @@ jobs:
37
- name: Test with pytest
38
39
pytest
40
+ - name: Test with mypy
41
+ run: |
42
+ mypy --strict sifter
0 commit comments