content: Describe valid uses of the nil keyword #3898
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: "Check spelling" | |
| on: | |
| push: | |
| pull_request: | |
| branches-ignore: | |
| - "dependabot/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: streetsidesoftware/cspell-action@v7 | |
| with: | |
| incremental_files_only: true | |
| strict: true | |
| # cspell uses the .cspell.json configuration file | |
| - uses: codespell-project/actions-codespell@v2 | |
| with: | |
| check_filenames: true | |
| check_hidden: true | |
| # codespell uses the .codespellrc file |