Skip to content

Commit c1c73ac

Browse files
committed
Configure ci to run on macos and windows
1 parent 4ffb03d commit c1c73ac

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ env:
66

77
jobs:
88
test:
9-
name: Build and test
10-
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macos-latest]
12+
13+
name: Build and test on ${{ matrix.os }}
14+
runs-on: ${{ matrix.os }}
15+
1116
steps:
1217
- uses: actions/checkout@v4
1318

0 commit comments

Comments
 (0)