Skip to content

Commit ee4dd81

Browse files
authored
Add Codespell GitHub Action (#31)
1 parent bd5a0e1 commit ee4dd81

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
codespell:
14+
name: Check for spelling errors
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- uses: codespell-project/actions-codespell@master
19+
with:
20+
check_filenames: true
21+
check_hidden: false

0 commit comments

Comments
 (0)