Document Pi4 Bug #86
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: "Pre-commit checks" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| codespell: | |
| name: "Check for spelling errors" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: codespell-project/actions-codespell@v2 | |
| with: | |
| check_filenames: true | |
| ignore_words_file: ./.codespellignore | |
| skip: "*.pdf" | |
| # When using this Action in other repos, the --skip option below can be removed | |
| # and the .codespellignore file can be used to ignore files or words. |