Skip to content

Commit 646ec4b

Browse files
Add matrix for python versions
1 parent c9d54fc commit 646ec4b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,18 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 60
1818

19+
version_matrix:
20+
strategy:
21+
matrix:
22+
python-version: ['3.9', '3.10', '3.11']
23+
1924
steps:
2025
- uses: actions/checkout@v4
2126

22-
- name: Set up Python 3.9
27+
- name: Set up Python ${{ matrix.python-version }}
2328
uses: actions/setup-python@v5
2429
with:
25-
python-version: '3.9'
30+
python-version: ${{ matrix.python-version }}
2631
cache: 'pip'
2732
cache-dependency-path: |
2833
setup.py

0 commit comments

Comments
 (0)