Skip to content

Commit 70d0818

Browse files
authored
Use codespell (#504)
1 parent 2f1c7ae commit 70d0818

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.codespellignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Taht

.github/workflows/codespell.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Check spelling
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ master ]
7+
8+
jobs:
9+
codespell:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: codespell-project/actions-codespell@v2
14+
with:
15+
check_filenames: true
16+
ignore_words_file: .codespellignore
17+
path: docs

0 commit comments

Comments
 (0)