-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3e890d
commit d1a5747
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Test GitHub Action | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
run: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Writes changes in the local checkout | ||
uses: crate-ci/typos@master | ||
with: | ||
write_changes: true | ||
files: ./docs/source/ProgrammingGuide/ ./docs/source/API/ ./docs/source/*.rst ./docs/source/*.md | ||
config: ./.typos.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[default] | ||
# Don't check text that matches the following regexes' | ||
extend-ignore-re = [] | ||
|
||
[default.extend-identifiers] | ||
# Don't correct these whole identifiers (word-groups) | ||
|
||
[default.extend-words] | ||
# Don't correct these word (parts) | ||
countr = "countr" | ||
OT = "OT" | ||
|
||
# Don't check the following files | ||
[files] | ||
extend-exclude = [] |