We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e5693 commit 3c90613Copy full SHA for 3c90613
.github/workflows/rust.yaml
@@ -14,7 +14,10 @@ env:
14
jobs:
15
build:
16
name: Build
17
- runs-on: ubuntu-latest
+ strategy:
18
+ matrix:
19
+ os: [ubuntu-latest, windows-latest]
20
+ runs-on: ${{ matrix.os }}
21
steps:
22
- name: Checkout sources
23
uses: actions/checkout@v3
@@ -26,7 +29,10 @@ jobs:
26
29
27
30
test:
28
31
name: Test
32
33
34
35
36
37
38
0 commit comments