2026-04-29 13:24:10 +00:00
|
|
|
#!/usr/bin/env bash
|
2026-05-13 12:10:38 +00:00
|
|
|
# Fast compile-only check + doc-coverage check on changed files.
|
2026-04-29 13:24:10 +00:00
|
|
|
# Use this for rapid iteration feedback while writing code.
|
2026-05-13 12:10:38 +00:00
|
|
|
# Catches the doc-coverage gate failures locally instead of waiting for
|
|
|
|
|
# the merge gate to bounce on a single missing `///`.
|
2026-04-29 13:24:10 +00:00
|
|
|
set -euo pipefail
|
|
|
|
|
cargo check --tests --workspace
|
2026-05-13 12:10:38 +00:00
|
|
|
cargo run -p source-map-gen --bin source-map-check -- --worktree . --base master
|