Skip to content

Commit f93056e

Browse files
committed
run tests with several Python versions
1 parent 6f924b3 commit f93056e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414

1515
timeout-minutes: 10
1616
runs-on: ubuntu-latest
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
1721

1822
steps:
1923
- uses: actions/checkout@v3
@@ -28,7 +32,7 @@ jobs:
2832
- name: Set up Python ${{ matrix.python-version }}
2933
uses: actions/setup-python@v4
3034
with:
31-
python-version: '3.8'
35+
python-version: ${{ matrix.python-version }}
3236
- name: Install dependencies
3337
run: |
3438
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)