Bump wat from 1.0.67 to 1.0.69 in /native/wasmex #244
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
working-directory: ./native/wasmex/ | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: rust-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- run: cargo fmt -- --check | |
- run: | | |
touch src/lib.rs | |
# need to disable extra_unused_lifetimes clippy because of rustler lifetime issues | |
# https://github.com/rusterlium/rustler/issues/428 | |
cargo clippy --all-targets --all-features -- -D warnings -A clippy::extra_unused_lifetimes |