We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ab01b commit 179f0eeCopy full SHA for 179f0ee
.github/workflows/codespell.yml
@@ -0,0 +1,25 @@
1
+# Codespell configuration is within pyproject.toml
2
+---
3
+name: Codespell
4
+
5
+on:
6
+ push:
7
+ branches: [main]
8
+ pull_request:
9
10
11
+permissions:
12
+ contents: read
13
14
+jobs:
15
+ codespell:
16
+ name: Check for spelling errors
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - name: Annotate locations with typos
23
+ uses: codespell-project/codespell-problem-matcher@v1
24
+ - name: Codespell
25
+ uses: codespell-project/actions-codespell@v2
0 commit comments