Skip to content

Phase 5: fitness-check CLI, symbol_metrics_history, structured telemetry, ci init #9

Phase 5: fitness-check CLI, symbol_metrics_history, structured telemetry, ci init

Phase 5: fitness-check CLI, symbol_metrics_history, structured telemetry, ci init #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Test
run: cargo test --workspace
- name: Audit
run: cargo install cargo-audit --locked && cargo audit --ignore RUSTSEC-2026-0189