ci: remove typos spell-check job (too many false positives) #86
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: Style Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - crates/** | |
| - Cargo.toml | |
| - Cargo.lock | |
| - .github/workflows/style.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUSTFLAGS: "-C debuginfo=1 -C target-cpu=x86-64-v3" | |
| jobs: | |
| format: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: rustfmt | |
| - name: Check formatting | |
| run: cargo fmt --manifest-path crates/lance-graph/Cargo.toml -- --check | |
| # clippy: runs LOCALLY as our internal pre-check, not on GitHub CI. | |
| # GitHub CI focuses on compile + test + format. | |
| # Clippy discipline documented in CODING_PRACTICES.md: | |
| # | |
| # cargo clippy --features lab -- -D warnings | |
| # cargo clippy --features serve -- -D warnings | |
| # typos / spell-check removed 2026-04-26: too many false positives on | |
| # technical jargon (NARS terms, codec acronyms, German loanwords used in | |
| # the cognitive stack). Spelling discipline is a code-review concern, | |
| # not a CI gate. | |