Skip to content

Commit

Permalink
test against more versions of Python in PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rtertiaer committed Dec 4, 2024
1 parent 8b9ee86 commit 18b3a41
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ jobs:
mypy:
needs: ruff
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- run: pip install -r requirements.txt
- run: pip install mypy
Expand Down

0 comments on commit 18b3a41

Please sign in to comment.