Skip to content

Commit

Permalink
Merge pull request #49 from robertknight/add-m1-ci
Browse files Browse the repository at this point in the history
Add M1 runner to CI
  • Loading branch information
robertknight authored Feb 4, 2024
2 parents 82eabb7 + aa499f5 commit 034571c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ on:
- 'ci/**'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup rust
run: rustup target add wasm32-unknown-unknown
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Cache
uses: actions/cache@v3
with:
Expand All @@ -25,10 +29,12 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install wasm-bindgen
run: which wasm-bindgen || cargo install wasm-bindgen-cli
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Build
run: cargo build
- name: WASM build
run: make wasm
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Test
run: make test
- name: Lint
Expand Down

0 comments on commit 034571c

Please sign in to comment.