Skip to content

Commit 8b3d403

Browse files
committed
add codespell
1 parent bbb326f commit 8b3d403

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

.codespell/codespellrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[codespell]
2+
skip = .git,Cargo.lock
3+
count =
4+
quiet-level = 3
5+
ignore-words = ./.codespell/ignore.txt

.codespell/ignore.txt

Whitespace-only changes.

.codespell/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
codespell==2.4.1

.github/workflows/codespell.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# A Github action that using codespell to check spelling.
2+
# see .codespell/* for configs
3+
# https://github.com/codespell-project/codespell
4+
5+
name: codespell
6+
7+
on:
8+
# Triggers the workflow on push or pull request against main
9+
push:
10+
branches: [master]
11+
pull_request:
12+
branches: [master]
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
jobs:
17+
codespell:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- name: Checkout the repository
22+
uses: actions/checkout@v4
23+
24+
- name: Setup python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: '3.x'
28+
29+
- name: Install codespell requirements
30+
run: pip install -r ./.codespell/requirements.txt
31+
32+
- name: Spell check
33+
run: codespell --config=./.codespell/codespellrc

0 commit comments

Comments
 (0)