Skip to content

Commit 67d4e0f

Browse files
authored
Create spellcheck.yml
1 parent f522c68 commit 67d4e0f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/spellcheck.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Spellcheck
2+
3+
on: [push, pull_request]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
spellcheck:
11+
name: Spelling
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
ref: ${{ github.event.pull_request.head.sha }}
17+
show-progress: true
18+
- uses: codespell-project/actions-codespell@master
19+
with:
20+
exclude_file: .github/workflows/codespell.exclude

0 commit comments

Comments
 (0)