Skip to content

Commit dc66e5e

Browse files
authored
Merge pull request #110 from consideRatio/pr/test-latest-py
ci: test with latest python version as well
2 parents 1bd7697 + e278732 commit dc66e5e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,19 @@ jobs:
3131
3232
tests:
3333
runs-on: ubuntu-22.04
34+
strategy:
35+
matrix:
36+
include:
37+
# Only test oldest supported and latest python version to reduce
38+
# GitHub API calls, as they can get rate limited
39+
- python-version: 3.8
40+
- python-version: 3.x
3441

3542
steps:
3643
- uses: actions/checkout@v4
37-
# Only testing 3.8 to avoid too many github API calls
3844
- uses: actions/setup-python@v5
3945
with:
40-
python-version: 3.8
46+
python-version: "${{ matrix.python-version }}"
4147
- name: Install dependencies
4248
run: |
4349
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)