Phase 3: MLX rejection, LLt, export, MIR #387
Workflow file for this run
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: Typos | |
| # Spell-check runs on every change (including Markdown/docs), so it is a | |
| # separate workflow from ci.yml, whose Python jobs skip prose-only changes. | |
| # Push is limited to main and dev (feature-branch pushes are covered by | |
| # pull_request) to avoid a duplicate run per push, matching ci.yml -- which | |
| # also runs on dev pushes since #290, so post-squash-merge drift on the | |
| # integration branch is caught immediately. | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| concurrency: | |
| group: typos-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| typos: | |
| name: Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: crate-ci/typos@v1 |