Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit aa55112

Browse filesBrowse files
authored
ci: replace deprecated spellcheck by codespell
1 parent b9cd0a3 commit aa55112
Copy full SHA for aa55112

File tree

Expand file treeCollapse file tree

1 file changed

+13
-6
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+13
-6
lines changed

‎.github/workflows/Continuous-Integration.yml

Copy file name to clipboardExpand all lines: .github/workflows/Continuous-Integration.yml
+13-6Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.