Skip to content

Commit d587389

Browse files
committed
ci: test on multiple Python versions.
1 parent f8fa2c1 commit d587389

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ on:
77
jobs:
88
pytest:
99
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ['3.9', '3.11']
1014
steps:
1115
- uses: actions/checkout@v4
1216
- uses: actions/setup-python@v5
1317
with:
14-
python-version: '3.11'
18+
python-version: ${{ matrix.python-version }}
1519
- name: Install
1620
run: |
1721
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)