Skip to content

Commit e41cd34

Browse files
Run tests on Windows and macOS (#65)
1 parent 263a54d commit e41cd34

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ubuntu-latest
13+
runs-on: ${{ matrix.os }}
1414
strategy:
1515
fail-fast: false
1616
matrix:
17+
os: [windows-latest, macos-latest, ubuntu-latest]
1718
python-version: ["3.8", "3.9", "3.10", "3.11"]
1819
django-version: ["4.2", "5.0"]
1920
exclude:
2021
- django-version: "5.0"
2122
python-version: "3.8"
2223
- django-version: "5.0"
2324
python-version: "3.9"
25+
- os: windows-latest # JSON1 is only built-in on 3.9+
26+
python-version: 3.8
2427

2528
steps:
2629
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)