Skip to content

Bump assert_cmd from 2.2.1 to 2.2.2 #15

Bump assert_cmd from 2.2.1 to 2.2.2

Bump assert_cmd from 2.2.1 to 2.2.2 #15

Workflow file for this run

name: Check
on:
pull_request:
workflow_call:
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: fmt - clippy - test
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Run rustfmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all-targets -- -D warnings
- name: Run tests
run: cargo test --all-targets