feat: replace --old/--new exact-span edit + write empty-stdin gua…
#72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Toolchain components | |
| run: rustup component add rustfmt clippy | |
| - name: Format | |
| run: cargo fmt --check | |
| - name: Clippy (warnings = errors) | |
| run: cargo clippy --all-targets -- -D warnings | |
| - name: Test | |
| run: cargo test | |
| - name: Release build (must be warning-clean) | |
| run: RUSTFLAGS="-D warnings" cargo build --release | |
| - name: Accuracy eval (structural-nav regression gate) | |
| run: python3 evals/run.py |