Skip to content

Align CLAUDE.md with the scan-pipeline seam; remove orphaned format_a… #310

Align CLAUDE.md with the scan-pipeline seam; remove orphaned format_a…

Align CLAUDE.md with the scan-pipeline seam; remove orphaned format_a… #310

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check
- run: cargo clippy --workspace --all-targets -- -D clippy::all
- run: cargo test --workspace
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: taiki-e/install-action@v2
with:
tool: cargo-audit
- run: cargo audit
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@1.93.0
- uses: Swatinem/rust-cache@v2
- run: cargo check