Skip to content

Commit 17b2385

Browse files
ci: ensure unit testing on various python versions used
1 parent df2810a commit 17b2385

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,17 @@ jobs:
2424
test:
2525
runs-on: ubuntu-latest
2626
needs: build
27+
strategy:
28+
matrix:
29+
pyversion:
30+
- '3.6'
31+
- '3.10'
32+
- '3.12'
2733
steps:
2834
- uses: actions/checkout@v4
2935
- uses: actions/setup-python@v5.4.0
3036
with:
31-
python-version: '3.10'
37+
python-version: ${{ matrix.pyversion }}
3238
- run: |
3339
pip install tox
3440
- name: Run unittests

0 commit comments

Comments
 (0)