Skip to content

Commit 7cdf342

Browse files
committed
ci: Test on MacOS
1 parent 974c811 commit 7cdf342

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/smoke-test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ concurrency:
1919

2020
jobs:
2121
test:
22-
runs-on: ubuntu-latest
22+
strategy:
23+
matrix:
24+
os:
25+
- ubuntu-latest
26+
- macos-latest
27+
runs-on: ${{ matrix.os }}
2328
steps:
2429
- uses: actions/checkout@v4
2530
- uses: cachix/install-nix-action@v26

.github/workflows/unit-test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ concurrency:
1313

1414
jobs:
1515
test:
16-
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
os:
19+
- ubuntu-latest
20+
- macos-latest
21+
runs-on: ${{ matrix.os }}
1722
steps:
1823
- uses: actions/checkout@v4
1924
- uses: cachix/install-nix-action@v26

0 commit comments

Comments
 (0)