Add codespell GitHub Actions workflow for automatic spelling checks

Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-02 23:10:45 +00:00
parent ea50e5f696
commit 0227b8a2f6
2 changed files with 38 additions and 0 deletions

22
.github/workflows/codespell.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Check Spelling
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check spelling with codespell
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
check_hidden: false