Skip to content

Commit 8f0aaa8

Browse files
updated github action
1 parent 673d60e commit 8f0aaa8

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install flake8 pytest
30-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
pip install flake8 pytest mypy
30+
pip install -U .
3131
- name: Lint with flake8
3232
run: |
3333
# stop the build if there are Python syntax errors or undefined names
@@ -37,3 +37,6 @@ jobs:
3737
- name: Test with pytest
3838
run: |
3939
pytest
40+
- name: Test with mypy
41+
run: |
42+
mypy --strict sifter

0 commit comments

Comments
 (0)