Skip to content

Commit fe2478a

Browse files
authored
Added Mypy check as github action (#1418)
* Added Mypy check to as github action * Removed py3.5
1 parent 1fe84b0 commit fe2478a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/unittests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ jobs:
6060
pip install --upgrade scipy==1.4.1
6161
python setup.py install
6262
63+
- name: Run Mypy
64+
shell: bash -l {0}
65+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version != '3.5' }}
66+
run: |
67+
pip install mypy
68+
mypy --config-file mypy.ini
69+
6370
- name: Run Tests
6471
shell: bash -l {0}
6572
run: |

0 commit comments

Comments
 (0)