codespell.yml 840 B

1234567891011121314151617181920212223242526272829
  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:
  11. push:
  12. branches: [ "*" ]
  13. tags: [ "*" ]
  14. pull_request:
  15. branches: [ "*" ]
  16. permissions: {}
  17. jobs:
  18. codespell:
  19. name: Check for spelling errors
  20. runs-on: docker
  21. steps:
  22. - uses: https://code.forgejo.org/actions/checkout@v3
  23. with:
  24. persist-credentials: false
  25. - uses: https://github.com/codespell-project/actions-codespell@master