We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a19770 commit c5a9629Copy full SHA for c5a9629
1 file changed
.github/workflows/ci.yml
@@ -12,11 +12,15 @@ env:
12
jobs:
13
build:
14
15
- runs-on: [ macos-latest, windows-latest ]
+ strategy:
16
+ matrix:
17
+ os: [ windows-latest, macos-latest ]
18
+
19
+ runs-on: ${{ matrix.os }}
20
21
steps:
22
- uses: actions/checkout@v4
23
- name: Build
24
run: cargo build --verbose
25
- name: Run tests
- run: cargo test --verbose
26
+ run: cargo test --verbose
0 commit comments