chore(deps): bump ic-crypto-ed25519 from 7927c34
to 76a634c
#345
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 Checks | |
on: | |
push: | |
pull_request: | |
jobs: | |
rust-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
- name: Run Clippy (non-test) | |
run: cargo clippy -- -D clippy::all -D warnings -A clippy::manual_range_contains | |
- name: Run Clippy (tests and benches) | |
run: cargo clippy --tests --benches -- -D clippy::all -D warnings -A clippy::manual_range_contains | |
- name: Check Cargo.lock | |
run: cargo update --workspace --locked |