-
Notifications
You must be signed in to change notification settings - Fork 9
43 lines (43 loc) · 1.02 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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" }}
- 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