We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab5aec commit aec6ae0Copy full SHA for aec6ae0
1 file changed
.github/workflows/codespell.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: Codespell
3
+
4
+on:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
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@v3
18
+ - name: Annotate locations with typos
19
+ uses: codespell-project/codespell-problem-matcher@v1
20
+ - name: Codespell
21
+ uses: codespell-project/actions-codespell@v2
0 commit comments