ci: add flake8 and mypy checks

This commit is contained in:
ljnsn 2022-12-22 00:00:39 +01:00
parent 24b7a4d245
commit 8e28b884e3
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,8 @@ jobs:
run: | run: |
# stop the build if there are Python syntax errors or undefined names # stop the build if there are Python syntax errors or undefined names
black --check --diff pandas_ods_reader/ tests/ black --check --diff pandas_ods_reader/ tests/
flake8 pandas_ods_reader/ tests/
mypy pandas_ods_reader/ tests/
- name: Test with pytest - name: Test with pytest
run: | run: |
python -m pytest --cov tests/ python -m pytest --cov tests/