Skip to content

Commit 557308b

Browse files
committed
Add codespell workflow
1 parent 0a982d8 commit 557308b

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.codespellrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
ignore-words-list = crate
3+
skip = .git,*.lock

.github/workflows/codespell.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Codespell
3+
4+
on:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
jobs:
11+
codespell:
12+
name: Check for spelling errors
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
- name: Codespell
19+
uses: codespell-project/actions-codespell@v2

0 commit comments

Comments
 (0)