codespell.yml 572 B

1234567891011121314151617
  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