Skip to content
This repository was archived by the owner on Aug 24, 2023. It is now read-only.

Commit ce05179

Browse files
feat(workflows): add os's to the build matrix (#170)
<!-- Thanks for sending a pull request! --> #### What this PR does / why we need it: #### Which issue(s) does this PR fixes?: <!-- (Optional) Automatically closes linked issue when PR is merged. Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. --> Fixes #62 #### Additional comments?: Signed-off-by: Eshan Shafeeq <[email protected]> Co-authored-by: Fuxing Loh <[email protected]>
1 parent b592186 commit ce05179

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

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

9292
build_cargo:
9393
name: Build (cargo)
94-
runs-on: ubuntu-latest
94+
strategy:
95+
matrix:
96+
os: [ubuntu-latest, macos-latest]
97+
runs-on: ${{ matrix.os }}
9598
steps:
9699
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
97100

0 commit comments

Comments
 (0)