Skip to content

Bump wasm-bindgen from 0.2.90 to 0.2.91 #61

Bump wasm-bindgen from 0.2.90 to 0.2.91

Bump wasm-bindgen from 0.2.90 to 0.2.91 #61

Workflow file for this run

name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install stable rust
run: |
rustup install stable
- name: Print versions
run: |
cargo --version
rustc --version
cargo clippy --version
cargo fmt --version
- name: Lint
run: cargo clippy --verbose -- -Dwarnings
- name: Formatting
run: cargo fmt --check --verbose
- name: Build
run: cargo build --verbose
- name: Tests
run: cargo test --verbose