Refuse degenerate fits in the AMICA wrapper (#50) (#55) #18
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 (feature-branch pushes are covered by pull_request) | |
| # to avoid a duplicate run per push, matching ci.yml. | |
| on: | |
| push: | |
| branches: [main] | |
| 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 |