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