Skip to content

Commit

Permalink
Added Mypy check as github action (#1418)
Browse files Browse the repository at this point in the history
* Added Mypy check to as github action

* Removed py3.5
  • Loading branch information
vfdev-5 committed Oct 28, 2020
1 parent 1fe84b0 commit fe2478a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ jobs:
pip install --upgrade scipy==1.4.1
python setup.py install
- name: Run Mypy
shell: bash -l {0}
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.5' }}
run: |
pip install mypy
mypy --config-file mypy.ini
- name: Run Tests
shell: bash -l {0}
run: |
Expand Down

0 comments on commit fe2478a

Please sign in to comment.