ci: use ${{ }} for mypy python check

This commit is contained in:
scito
2022-12-29 21:52:54 +01:00
parent 89564448c6
commit 66b41d86e6

View File

@@ -48,6 +48,6 @@ jobs:
- name: Type checking with mypy
run: |
mypy --strict *.py
if: matrix.python-version == '3.x'
if: ${{ matrix.python-version == '3.x' }}
- name: Test with pytest
run: pytest