Skip to content

Commit

Permalink
Run mypy as part of source code checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Jul 31, 2021
1 parent 75e088c commit 66925b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 check-manifest pytest codecov coverage
python -m pip install flake8 check-manifest pytest codecov coverage mypy
python -m pip install ${{ matrix.pip-sphinx }}
pip install .
- name: Check manifest
Expand All @@ -39,6 +39,7 @@ jobs:
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source
flake8 . --count --exit-zero --max-complexity=10
mypy
- name: Documentation
run: |
pushd doc && make html && popd
Expand Down

0 comments on commit 66925b5

Please sign in to comment.