Skip to content

Commit d03bbc3

Browse files
Add codespell to CI to find typos early
1 parent 4c590e2 commit d03bbc3

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/codespell.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Codespell
3+
4+
on:
5+
pull_request:
6+
push:
7+
8+
jobs:
9+
codespell:
10+
name: Check for spelling errors
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: codespell-project/actions-codespell@master
16+
with:
17+
skip: *.po,base64.*,SSLerrs.h
18+
ignore_words_file: codespell_ignore_words.txt

codespell_ignore_words.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ba
2+
gord
3+
parm
4+
parms
5+
pres

0 commit comments

Comments
 (0)