Skip to content

Commit c036ace

Browse files
authored
Merge pull request #510 from chu11/typos_checker
workflows: add typos checker
2 parents 65ae467 + 1cb2f5b commit c036ace

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,10 @@ jobs:
5555
with:
5656
name: linkcheck
5757
path: linkcheck/
58+
59+
spelling:
60+
runs-on: ubuntu-latest
61+
steps:
62+
- uses: actions/checkout@v6.0.2
63+
- name: Check Spelling
64+
uses: crate-ci/typos@v1.44.0

.typos.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# do not check data files, assumed special / unique
2+
# do not check spell checker file
3+
[files]
4+
extend-exclude = [
5+
"data/*",
6+
"spell.en.pws",
7+
]

0 commit comments

Comments
 (0)