Skip to content

Commit f869ed4

Browse files
committed
Run on all gha OSes
1 parent 4874ab1 commit f869ed4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ on:
99

1010
jobs:
1111
rust-test:
12-
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
os: [ubuntu-latest, macos-latest, windows-latest]
15+
runs-on: ${{ matrix.os }}
1316
steps:
1417
- uses: actions/checkout@v2
1518
- name: Run cargo test
1619
uses: actions-rs/cargo@v1
1720
with:
1821
command: test
19-
args: --all
22+
args: --all

0 commit comments

Comments
 (0)