Skip to content

Commit 2b9ed98

Browse files
committed
python-version
1 parent 22bbd21 commit 2b9ed98

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ on:
1515

1616
jobs:
1717
pytester:
18-
runs-on: ubuntu-latest
18+
runs-on: ${{ matrix.os }}
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
os: ["ubuntu-22.04"] # todo: add `, "macOS-14", "windows-2022"`
23+
python-version: ["3.9", "3.10", "3.11"]
1924
defaults:
2025
run:
2126
shell: bash
@@ -25,7 +30,7 @@ jobs:
2530
- name: Set up Python version
2631
uses: actions/setup-python@v5
2732
with:
28-
python-version: '3.10'
33+
python-version: ${{ matrix.python-version }}
2934
cache: 'pip'
3035

3136
- name: Install git-lfs

0 commit comments

Comments
 (0)