Skip to content

Commit 2d4c6ba

Browse files
committed
add spellcheck
1 parent b641b6a commit 2d4c6ba

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.codespellrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
skip = .github,.codespellrc

.github/workflows/codespell.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: codespell
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
jobs:
10+
codespell:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v6
14+
- uses: codespell-project/actions-codespell@v2

0 commit comments

Comments
 (0)