We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b15a1 commit 2bcafdcCopy full SHA for 2bcafdc
.github/workflows/codespell.yml
@@ -0,0 +1,15 @@
1
+# GitHub Action to automate the identification of common misspellings in text files.
2
+# https://github.com/codespell-project/actions-codespell
3
+# https://github.com/codespell-project/codespell
4
+name: codespell
5
+on: [push, pull_request]
6
+jobs:
7
+ codespell:
8
+ name: Check for spelling errors
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: codespell-project/actions-codespell@master
13
+ with:
14
+ check_filenames: true
15
+ skip: ./.git
0 commit comments