codespell.disabled 507 B

12345678910111213141516171819202122232425
  1. # Codespell configuration is within pyproject.toml
  2. ---
  3. name: Codespell
  4. on:
  5. push:
  6. branches: [main]
  7. pull_request:
  8. branches: [main]
  9. permissions:
  10. contents: read
  11. jobs:
  12. codespell:
  13. name: Check for spelling errors
  14. runs-on: ubuntu-latest
  15. steps:
  16. - name: Checkout
  17. uses: actions/checkout@v4
  18. - name: Annotate locations with typos
  19. uses: codespell-project/codespell-problem-matcher@v1
  20. - name: Codespell
  21. uses: codespell-project/actions-codespell@v2