Skip to content

Bump quote from 1.0.36 to 1.0.38 #183

Bump quote from 1.0.36 to 1.0.38

Bump quote from 1.0.36 to 1.0.38 #183

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
target: wasm32-unknown-unknown
- name: fmt
run: |
cargo fmt --version
cargo fmt --all -- --check
- name: clippy
run: |
cargo clippy --version
cargo clippy --all-targets -- -D warnings
- name: machete
uses: bnjbvr/cargo-machete@main
- name: check
run: |
cargo check
- name: build
run: |
cargo --version --verbose
cargo build --all
cargo build --all --no-default-features
- name: test
run: |
cargo test --all --all-features