Skip to content

Commit 6149970

Browse files
authored
Merge pull request #51 from per1234/spell-check
Add spell-check GitHub Actions workflow
2 parents 821c7fa + c175d3f commit 6149970

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/spell-check.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Spell Check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
spellcheck:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
13+
- name: Spell check
14+
uses: ./libraries/spell-check
15+
with:
16+
ignore-words-list: etc/codespell-ignore-words-list.txt
17+
skip-paths: ./libraries/spell-check/test/testdata,./setup-taskfile/node_modules,./setup-taskfile/package-lock.json

compilesketches/compilesketches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def get_manager_dependency_name(self, dependency):
288288
"""Return the appropriate name value for a repository dependency
289289
290290
Keyword arguments:
291-
dependency -- dictionary defining the Library/Board Manger dependency
291+
dependency -- dictionary defining the Library/Board Manager dependency
292292
"""
293293
name = dependency[self.dependency_name_key]
294294
if self.dependency_version_key in dependency:

etc/codespell-ignore-words-list.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
afterall
2+
clude

0 commit comments

Comments
 (0)