Run crate-ci/typos
in CI
#61
Workflow file for this run
This file contains 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: Spell Check | |
permissions: {} | |
on: [pull_request] | |
jobs: | |
typos-check: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout the JuliaLang/julia repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Check spelling | |
uses: crate-ci/typos@master | |
- name: False positive hint | |
if: failure() | |
run: echo "If this is not a typo, add it to the [default.extend-identifiers] section of typos.toml" |