diff options
Diffstat (limited to '.github/workflows/codespell.yml')
| -rw-r--r-- | .github/workflows/codespell.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 000000000..d873fb725 --- /dev/null +++ b/.github/workflows/codespell.yml | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2023 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | # GitHub Action to automate the identification of common misspellings in text files. | ||
| 4 | # https://github.com/codespell-project/actions-codespell | ||
| 5 | # https://github.com/codespell-project/codespell | ||
| 6 | name: codespell | ||
| 7 | on: pull_request | ||
| 8 | permissions: {} | ||
| 9 | jobs: | ||
| 10 | codespell: | ||
| 11 | name: Check for spelling errors | ||
| 12 | runs-on: ubuntu-latest | ||
| 13 | steps: | ||
| 14 | - uses: actions/checkout@v3 | ||
| 15 | with: | ||
| 16 | persist-credentials: false | ||
| 17 | - uses: codespell-project/actions-codespell@master | ||