Skip to content

Commit

Permalink
Test with mypy using more Python versions
Browse files Browse the repository at this point in the history
Run mypy with Python >= 3.9, instead of just 3.9.
  • Loading branch information
p00ya committed May 19, 2024
1 parent e1dc6b7 commit e9d1ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
python3 -X dev -m pytest
- name: mypy
run: |
if test "${{ matrix.python-version }}" = "3.9" ; then
if dpkg --compare-versions "${{ matrix.python-version }}" ge "3.9" ; then
python3 -m mypy --strict -p climbing_ratings
python3 -m mypy --strict tests/test_climbing_ratings.py
else
Expand Down

0 comments on commit e9d1ea1

Please sign in to comment.