We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1c7ae commit 70d0818Copy full SHA for 70d0818
.codespellignore
@@ -0,0 +1 @@
1
+Taht
.github/workflows/codespell.yml
@@ -0,0 +1,17 @@
+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