Skip to content

Require Rust 1.88 for WASM binding #11

Require Rust 1.88 for WASM binding

Require Rust 1.88 for WASM binding #11

Workflow file for this run

name: Rust quality
on:
push:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85.0
components: rustfmt, clippy
- run: cargo fmt --all --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-features