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 @@ -33,14 +33,21 @@ jobs:
3333 run : |
3434 cat ${{ steps.Astyle.outputs.astyle-result }}
3535 exit 1
36- spell-check :
36+ codespell :
37+ name : Check for spelling errors
3738 runs-on : ubuntu-latest
38- name : Spell check
3939 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
4451 lib_build :
4552 runs-on : ubuntu-latest
4653 name : Library compilation
You can’t perform that action at this time.
0 commit comments