Skip to content

Commit

Permalink
ci: build and test crate on multiple OSs
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas committed May 19, 2024
1 parent 643e6e1 commit 161f823
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ env:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14]
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down

0 comments on commit 161f823

Please sign in to comment.