File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,21 @@ jobs:
31
31
run : |
32
32
cat ${{ steps.Astyle.outputs.astyle-result }}
33
33
exit 1
34
- spell-check :
34
+ codespell :
35
+ name : Check for spelling errors
35
36
runs-on : ubuntu-latest
36
- name : Spell check
37
37
steps :
38
- - uses : actions/checkout@main
39
- - uses : arduino/actions/libraries/spell-check@master
40
- # with:
41
- # ignore-words-list: "./extras/codespell-ignore-words-list.txt"
38
+ - name : Checkout
39
+ uses : actions/checkout@main
40
+
41
+ # See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
42
+ - name : Spell check
43
+ uses : codespell-project/actions-codespell@master
44
+ with :
45
+ check_filenames : true
46
+ check_hidden : true
47
+ # In the event of a false positive, add the word in all lower case to this file:
48
+ # ignore_words_file: ./extras/codespell-ignore-words-list.txt
42
49
lib_build :
43
50
runs-on : ubuntu-latest
44
51
name : Library compilation
You can’t perform that action at this time.
0 commit comments