Skip to content

chore: remove outdated documentation and implementation plans #13

chore: remove outdated documentation and implementation plans

chore: remove outdated documentation and implementation plans #13

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
# ── Format check ──────────────────────────────────────────────────────
# Ensures no unformatted code slips through.
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
# ── Clippy (matches local AGENTS.md / CLAUDE.md gate) ───────────────────
# pedantic / nursery / unwrap_used / docs lints are enforced via
# Cargo.toml + -D warnings.
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings