Skip to content

Commit 7f6632b

Browse files
authored
ci: replace deprecated spellcheck by codespell
1 parent ff66441 commit 7f6632b

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
@@ -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

0 commit comments

Comments
 (0)