Skip to content

Commit add3327

Browse files
committed
Add MacOS to library-check GitHub Actions workflow.
1 parent c17ccf7 commit add3327

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/library-check.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
# Run the `spec` binary for this library.
2222
spec:
2323
if: github.repository != 'savi-lang/base-standard-library' # skip base repo
24-
runs-on: ubuntu-latest
24+
strategy:
25+
fail-fast: false
26+
matrix:
27+
os: [ubuntu-latest, macos-latest]
28+
runs-on: ${{matrix.os}}
2529
steps:
2630
- uses: actions/checkout@v2
2731
- uses: savi-lang/action-install@v1.0.0

0 commit comments

Comments
 (0)