Skip to content

Bump wasm-bindgen from 0.2.97 to 0.2.99 #395

Bump wasm-bindgen from 0.2.97 to 0.2.99

Bump wasm-bindgen from 0.2.97 to 0.2.99 #395

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: rust
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/[email protected]
with:
command: check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/[email protected]
with:
command: test
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features