Skip to content

Commit 1370972

Browse files
Add codespell to CI
1 parent 312be59 commit 1370972

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/codespell.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Codespell
3+
4+
on:
5+
push:
6+
branches: [master]
7+
pull_request:
8+
branches: [master]
9+
10+
jobs:
11+
codespell:
12+
name: Check for spelling errors
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: codespell-project/actions-codespell@master
18+
with:
19+
skip: js,*.svg
20+
ignore_words_list: fo,te,als

0 commit comments

Comments
 (0)