Add github action to codespell master on push and PRs

pull/3630/head
Yaroslav Halchenko 2023-11-16 10:42:20 -05:00
parent eed319e896
commit e20bd9402b
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: [master]
pull_request:
branches: [master]
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