Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 0301380

Browse files
committed
test on OS matrix
1 parent 3f0a93b commit 0301380

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/rust.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ env:
1212
jobs:
1313
build:
1414

15-
runs-on: ubuntu-latest
15+
runs-on: ${{ matrix.os }}
16+
matrix:
17+
os: [ ubuntu-latest, macos-latest, windows-latest ]
1618

1719
steps:
18-
- uses: actions/checkout@v4
19-
- name: Build
20-
run: cargo build --verbose
21-
- name: Run tests
22-
run: cargo test --verbose
20+
- uses: actions/checkout@v4
21+
- name: Build
22+
run: cargo build --verbose
23+
- name: Run tests
24+
run: cargo test --verbose

0 commit comments

Comments
 (0)