Run the full project verification suite:
just check
This runs three stages in sequence:
- Lint —
cargo +nightly fmt -- --checkand clippy - Test —
cargo nextest run(all tests, parallel) - Architecture —
cargo xtask architecture(semantic boundary enforcement)
If any stage fails, report the failure clearly and fix it before re-running. Do not skip stages.
If only a specific stage needs re-checking after a fix, run it individually:
just lint— format + clippy onlyjust test— tests onlyjust architecture-check— check architecture boundaries only
Source: kevinswiber/mmdflux — distributed by TomeVault.