Skip to content

Commit de5b9e9

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

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+
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
codespell:
13+
name: Check for spelling errors
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: codespell-project/actions-codespell@master
19+
with:
20+
skip: js,*.svg

0 commit comments

Comments
 (0)