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 fea1fd6 commit 34c47b1Copy full SHA for 34c47b1
.github/workflows/build.yml
@@ -208,3 +208,15 @@ jobs:
208
files: temp/coverage.xml
209
flags: unittests
210
fail_ci_if_error: true
211
+
212
+ typos-check:
213
+ name: "Typos"
214
215
+ runs-on: "ubuntu-latest"
216
217
+ steps:
218
+ - name: "Checkout"
219
+ uses: "actions/checkout@v3"
220
221
+ - name: "Search for misspellings"
222
+ uses: "crate-ci/[email protected]"
.typos.toml
@@ -0,0 +1,10 @@
1
+[files]
2
+extend-exclude = [
3
+ ".git/",
4
+]
5
+ignore-hidden = false
6
7
+[default]
8
+extend-ignore-re = [
9
+ "const BA =",
10
0 commit comments