Skip to content

Commit c3bd90f

Browse files
Add codespell to CI to catch typos early
1 parent 50883ae commit c3bd90f

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
aline
2+
amoungst
3+
ba
4+
basf
5+
boun
6+
bre
7+
cach
8+
complies
9+
coo
10+
copys
11+
deine
12+
fo
13+
fpr
14+
fro
15+
fwe
16+
gool
17+
hart
18+
hist
19+
ines
20+
inout
21+
ist
22+
jaques
23+
lod
24+
mape
25+
mor
26+
nmae
27+
nd
28+
ocur
29+
pullrequest
30+
ro
31+
soler
32+
te
33+
technic
34+
teh
35+
thi
36+
usal
37+
winn
38+
yau

.github/workflows/codespell.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Codespell
3+
4+
on:
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
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,vo*.rst,_stop_words.py
20+
ignore_words_file: .github/codespell_ignore_words_file.txt

0 commit comments

Comments
 (0)