We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a56d0bd + cf6f3ce commit 589b394Copy full SHA for 589b394
1 file changed
.github/workflows/pr-linter.yml
@@ -118,6 +118,24 @@ jobs:
118
config: ".github/.licenserc.yml"
119
mode: "check"
120
121
+ pr-check-codespell:
122
+ name: Codespell Check
123
+ runs-on: ubuntu-24.04
124
+ steps:
125
+ - name: "Checkout code"
126
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
127
+ with:
128
+ persist-credentials: false
129
+
130
+ - name: "Install codespell"
131
+ run: |
132
+ python3 -m pip install --upgrade pip
133
+ python3 -m pip install codespell
134
135
+ - name: "Run codespell"
136
137
+ codespell *.md doc
138
139
other-lint:
140
name: Other linters
141
runs-on: ubuntu-24.04
0 commit comments