Skip to content

Commit a669734

Browse files
authored
Merge pull request #930 from adamjstewart/ci/platform-python
2 parents e7e4005 + 0659d62 commit a669734

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ jobs:
2929
run: ruff format --check
3030

3131
test:
32-
runs-on: ubuntu-latest
32+
strategy:
33+
matrix:
34+
os: [ubuntu-latest, macos-latest, windows-latest]
35+
python-version: ["3.10", "3.11", "3.12"]
36+
runs-on: ${{ matrix.os }}
3337
steps:
3438
- uses: actions/checkout@v4
3539
- name: Set up Python ${{ matrix.python-version }}
3640
uses: actions/setup-python@v5
3741
with:
38-
python-version: "3.11"
42+
python-version: ${{ matrix.python-version }}
3943
- name: Install dependencies
4044
run: python -m pip install -r requirements/required.txt -r requirements/test.txt
4145
- name: Test with pytest

0 commit comments

Comments
 (0)