Skip to content

chore(deps): bump ic-canisters-http-types from 7927c34 to ac71086 #424

chore(deps): bump ic-canisters-http-types from 7927c34 to ac71086

chore(deps): bump ic-canisters-http-types from 7927c34 to ac71086 #424

Workflow file for this run

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