This document covers the procedures and requirements for validating changes to
the project, including linting and testing.
Run Clippy to catch common mistakes and improve code quality.
```bash
cargo clippy --tests
```
Ensure the project builds and passes checks.
```bash
cargo check --tests
cargo test
```
-