verify-backend

Verify backend code quality and compilation

Verify Backend

Run these steps before committing backend changes to ensure everything compiles and tests pass.
  1. Check Compilation (including tests) Ensures that lib and test targets compile successfully.
    // turbo
    cargo fmt --all -- --check && cargo check --workspace --tests && cargo test --workspace --lib && cargo clippy --workspace
    # NOTE: `cargo check --tests` is critical to catch E0063 (missing fields) in test structs BEFORE running full suite.