We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b61aa7 commit 75ea6f4Copy full SHA for 75ea6f4
.github/workflows/codespell.yml
@@ -0,0 +1,27 @@
1
+name: codespell
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ # Allows you to run this workflow manually from the Actions tab
9
+ workflow_dispatch:
10
+jobs:
11
+ codespell:
12
+ name: Check for spelling errors
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@main
18
19
+ # See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
20
+ - name: Spell check
21
+ uses: codespell-project/actions-codespell@master
22
+ with:
23
+ check_filenames: true
24
+ check_hidden: true
25
+ # In the event of a false positive, add the word in all lower case to this file:
26
+ # ignore_words_file: ./extras/codespell-ignore-words-list.txt
27
+ path: src
.github/workflows/spell-check.yml
0 commit comments