Skip to content

Commit a998821

Browse files
committed
feat(ci): added Windows runner and matrix builds
1 parent e7f95ad commit a998821

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ on:
1616

1717
jobs:
1818
build:
19-
runs-on: "ubuntu-latest"
19+
runs-on: ${{ matrix.os }}
20+
strategy:
21+
matrix:
22+
os: [ubuntu-latest, windows-latest]
23+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
2024

2125
steps:
2226
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)