Skip to content

Commit aa55112

Browse files
authored
ci: replace deprecated spellcheck by codespell
1 parent b9cd0a3 commit aa55112

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/Continuous-Integration.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)