Skip to content

Commit

Permalink
ci: GitHub Action to detect typos with codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored May 30, 2024
1 parent 805d146 commit b77e4ce
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# https://github.com/codespell-project/actions-codespell
name: codespell
on: [pull_request, push]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
ignore_words_list: crate,raison

0 comments on commit b77e4ce

Please sign in to comment.