Add github action to codespell main on push and PRs

This commit is contained in:
Yaroslav Halchenko 2023-07-15 18:28:49 -04:00
parent 8b74e16ce0
commit 91d24515f0
1 changed files with 22 additions and 0 deletions

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

@ -0,0 +1,22 @@
---
name: Codespell
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v2