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:
3131 run : |
3232 cat ${{ steps.Astyle.outputs.astyle-result }}
3333 exit 1
34- spell-check :
34+ codespell :
35+ name : Check for spelling errors
3536 runs-on : ubuntu-latest
36- name : Spell check
3737 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
4249 lib_build :
4350 runs-on : ubuntu-latest
4451 name : Library compilation
You can’t perform that action at this time.
0 commit comments