Skip to content

Add M1 runner to CI #64

Add M1 runner to CI

Add M1 runner to CI #64

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
- 'ci/**'
jobs:
ci:
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" }}

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 11): Unexpected symbol: '"ubuntu-latest"'. Located at position 14 within expression: matrix.os == "ubuntu-latest" .github/workflows/ci.yml (Line: 32, Col: 11): Unexpected symbol: '"ubuntu-latest"'. Located at position 14 within expression: matrix.os == "ubuntu-latest"
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
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
run: |
make checkformatting
make lint