1 parent 019f1b9 commit 70fc8caCopy full SHA for 70fc8ca
1 file changed
.github/workflows/continuous-integration-pip.yml
@@ -60,11 +60,12 @@ jobs:
60
run: |
61
# stop the build if there are flake8 errors
62
flake8 src tests --count --show-source --statistics
63
- - name: Type check package source with mypy
+ - name: Type check package source with mypy (except pypy)
64
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
65
66
mypy src/nographs
67
- - name: Check source code formatting with Black
+ - name: Check source code formatting with Black (except python 3.9)
68
+ if: ${{ !contains(matrix.python-version, '3.9') }}
69
70
black src/nographs tests --check --verbose --diff
71
- name: Install from source (required for the pre-commit tests)
0 commit comments