Skip to content

Commit

Permalink
ci: replace deprecated spellcheck by codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
fpistm authored Nov 24, 2022
1 parent b9cd0a3 commit aa55112
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/Continuous-Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,21 @@ jobs:
run: |
cat ${{ steps.Astyle.outputs.astyle-result }}
exit 1
spell-check:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
name: Spell check
steps:
- uses: actions/checkout@main
- uses: arduino/actions/libraries/spell-check@master
# with:
# ignore-words-list: "./extras/codespell-ignore-words-list.txt"
- name: Checkout
uses: actions/checkout@main

# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
- name: Spell check
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
# In the event of a false positive, add the word in all lower case to this file:
# ignore_words_file: ./extras/codespell-ignore-words-list.txt
lib_build:
runs-on: ubuntu-latest
name: Library compilation
Expand Down

0 comments on commit aa55112

Please sign in to comment.