build(deps): bump clap from 4.5.37 to 4.5.44 #135
Workflow file for this run
This file contains hidden or 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: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
runtime: | |
name: Lint, format, build, and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Cache Cargo dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cargo check | |
run: cargo check --all --tests --benches | |
- name: Format check | |
run: cargo fmt --all -- --check | |
- name: Lint with Clippy | |
run: cargo clippy --all --examples --tests --benches -- -D warnings | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build | |
run: cargo build --release |