Skip to content

Commit 0a974f1

Browse files
committed
ci: Run tests on other platforms
Rust-simplicity supports MacOS and Windows since the latest updates. This commit enables CI for MacOS. I would enable Windows as well, but the install-nix-action doesn't support it.
1 parent fb4a1d3 commit 0a974f1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121

2222
test-stable:
2323
name: Test - stable toolchain
24-
runs-on: ubuntu-latest
24+
runs-on: ${{ matrix.os }}
25+
strategy:
26+
matrix:
27+
os: [ubuntu-latest, macos-latest]
2528

2629
steps:
2730
- name: Checkout

0 commit comments

Comments
 (0)