Skip to content

Commit

Permalink
Update python-checks.yml: correct python version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
liffiton authored Jun 19, 2024
1 parent 5125a25 commit d80865f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
contents: read

jobs:
build:
test:

runs-on: ubuntu-latest
strategy:
Expand All @@ -29,7 +29,7 @@ jobs:
python -m pip install --upgrade pip wheel
pip install -e .[test]
- name: Type check with mypy
if: ${{ matrix.python-version >= 3.10 }}
if: ${{ matrix.python-version != 3.9 }}
run: |
mypy
- name: Test with pytest
Expand Down

0 comments on commit d80865f

Please sign in to comment.