Skip to content

Commit 5a797c5

Browse files
committed
add codespell action
1 parent c5c1e44 commit 5a797c5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/codespell.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Run codespell on source files
2+
3+
on: [pull_request]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: codespell-project/actions-codespell@v2
15+
with:
16+
ignore_words_list: Missings,coo,ue,fo,ans
17+
only_warn: 1

0 commit comments

Comments
 (0)