Skip to content

Commit c5a9629

Browse files
committed
Update CI
1 parent 2a19770 commit c5a9629

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ env:
1212
jobs:
1313
build:
1414

15-
runs-on: [ macos-latest, windows-latest ]
15+
strategy:
16+
matrix:
17+
os: [ windows-latest, macos-latest ]
18+
19+
runs-on: ${{ matrix.os }}
1620

1721
steps:
1822
- uses: actions/checkout@v4
1923
- name: Build
2024
run: cargo build --verbose
2125
- name: Run tests
22-
run: cargo test --verbose
26+
run: cargo test --verbose

0 commit comments

Comments
 (0)