diff options
| author | 2023-03-12 21:59:46 -0400 | |
|---|---|---|
| committer | 2023-03-12 21:59:46 -0400 | |
| commit | 54c359d1e3915653ce07a26e0e574aca5a331cb1 (patch) | |
| tree | 75c4fe48af55186a4e420e94a1d7e1bfd92e4ec0 /.github/workflows/codespell.yml | |
| parent | Merge pull request #9913 from ameerj/acc-dma-refactor (diff) | |
| parent | general: fix spelling mistakes (diff) | |
| download | yuzu-54c359d1e3915653ce07a26e0e574aca5a331cb1.tar.gz yuzu-54c359d1e3915653ce07a26e0e574aca5a331cb1.tar.xz yuzu-54c359d1e3915653ce07a26e0e574aca5a331cb1.zip | |
Merge pull request #9942 from liamwhite/speling
general: use codespell to identify spelling mistakes
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 | ||