Skip to content

Commit

Permalink
Add codespell GitHub Action
Browse files Browse the repository at this point in the history
To limit number of typos added to the project.

Refs #2279

Signed-off-by: Mateusz Gozdek <[email protected]>
  • Loading branch information
invidian committed May 5, 2022
1 parent 76d8571 commit 15e9ff3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .codespellignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aks
witht
geting
ot
intepreted
14 changes: 14 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Codespell
on:
pull_request:
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
with:
skip: .git,_artifacts,*.sum
ignore_words_file: .codespellignore
check_filenames: true
check_hidden: true

0 comments on commit 15e9ff3

Please sign in to comment.