codespell.yml 765 B

12345678910111213141516171819202122
  1. # SPDX-FileCopyrightText: 2023 yuzu Emulator Project
  2. # SPDX-FileCopyrightText: 2024 suyu Emulator Project
  3. # SPDX-License-Identifier: GPL-2.0-or-later
  4. #
  5. # GitHub Action to automate the identification of common misspellings in text files.
  6. # https://github.com/codespell-project/actions-codespell
  7. # https://github.com/codespell-project/codespell
  8. # Actions Documentation: https://forgejo.org/docs/next/user/actions/#list-of-tasks-in-a-repository
  9. name: codespell
  10. on: pull_request
  11. permissions: {}
  12. jobs:
  13. codespell:
  14. name: Check for spelling errors
  15. runs-on: ubuntu-latest
  16. steps:
  17. - uses: https://code.forgejo.org/actions/checkout@v3
  18. with:
  19. persist-credentials: false
  20. - uses: https://github.com/codespell-project/actions-codespell