Skip to content

Commit

Permalink
Add macos to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildKite committed Nov 29, 2024
1 parent 5e970b8 commit f2f5f08
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
env:
CARGO_TERM_COLOR: always
jobs:
build:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -17,3 +17,14 @@ jobs:
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose

build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install hdf5 library and protobuf
run: sudo brew install hdf5 protobuf
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose

0 comments on commit f2f5f08

Please sign in to comment.