File tree 2 files changed +28
-0
lines changed
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check misspelled words with 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/.codespellignore
27
+ skip : ./.git,./extras/.codespellignore
Original file line number Diff line number Diff line change
1
+ aci
You can’t perform that action at this time.
0 commit comments