-
-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (25 loc) · 864 Bytes
/
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
name: CI
on: [push, pull_request]
env:
RUSTFLAGS: '-Dwarnings'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup toolchain install nightly --no-self-update --profile default --target wasm32-unknown-unknown
- uses: swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Check formatting
run: cargo fmt --all --check
- name: Lint
run: cargo clippy --all-features
- name: Test
run: cargo test --all-features