File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 41
41
tool_name : JuliaFormatter
42
42
fail_on_error : true
43
43
44
+ typos-check :
45
+ name : Spell Check with Typos
46
+ # Run on PRs
47
+ if : github.event_name == 'pull_request'
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - name : Checkout Actions Repository
51
+ uses : actions/checkout@v4
52
+ - name : Check spelling
53
+ uses : crate-ci/typos@master
54
+ with :
55
+ config : ./_typos.toml
56
+ write_changes : true
57
+ - uses : reviewdog/action-suggester@v1
58
+ with :
59
+ tool_name : Typos
60
+ fail_on_error : true
61
+
44
62
test :
45
63
name : Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
46
64
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change
1
+ # https://github.com/crate-ci/typos#false-positives
2
+ [default ]
3
+
4
+ [default .extend-identifiers ]
5
+ missings = " missings"
6
+ Missings = " Missings"
7
+ Artic = " Artic"
8
+
9
+ [default .extend-words ]
10
+ qest = " qest"
You can’t perform that action at this time.
0 commit comments