Skip to content

Commit 3c90613

Browse files
committed
Run CI on windows as well as linux
1 parent 56e5693 commit 3c90613

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/rust.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ env:
1414
jobs:
1515
build:
1616
name: Build
17-
runs-on: ubuntu-latest
17+
strategy:
18+
matrix:
19+
os: [ubuntu-latest, windows-latest]
20+
runs-on: ${{ matrix.os }}
1821
steps:
1922
- name: Checkout sources
2023
uses: actions/checkout@v3
@@ -26,7 +29,10 @@ jobs:
2629

2730
test:
2831
name: Test
29-
runs-on: ubuntu-latest
32+
strategy:
33+
matrix:
34+
os: [ubuntu-latest, windows-latest]
35+
runs-on: ${{ matrix.os }}
3036
steps:
3137
- name: Checkout sources
3238
uses: actions/checkout@v3

0 commit comments

Comments
 (0)