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 a1fde7f commit d507dccCopy full SHA for d507dcc
.github/workflows/CodeSpell.yml
@@ -0,0 +1,24 @@
1
+name: codespell
2
+
3
+on:
4
+ pull_request:
5
+ # Allows you to run this workflow manually from the Actions tab
6
+ workflow_dispatch:
7
+jobs:
8
+ codespell:
9
+ name: Check for spelling errors
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
16
+ # See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
17
+ - name: Spell check
18
+ uses: codespell-project/actions-codespell@master
19
+ with:
20
+ check_filenames: true
21
+ check_hidden: true
22
+ # In the event of a false positive, add the word in all lower case to this file:
23
+ ignore_words_file: ./CI/codespell/.codespellignore
24
+ skip: ./.git,./Drivers/,./Middlewares
CI/codespell/.codespellignore
0 commit comments