Skip to content

Commit 50b4633

Browse files
committed
Added spellcheck CI/CD workflow pipeline.
1 parent 99a55f6 commit 50b4633

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci_spellcheck.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Spellcheck CI/CD
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
spellcheck:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v2
18+
19+
- name: Spell check
20+
uses: codespell-project/actions-codespell@master
21+
with:
22+
path: src/, examples/, library.json, library.properties, README.md

0 commit comments

Comments
 (0)