File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 34
34
- name : Install Dependencies
35
35
run : make setup
36
36
37
+ - name : Check for typos
38
+ run : make spellcheck
39
+
37
40
- name : Check the Code style
38
41
run : make codestyle
39
42
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ python := $(run) python
7
7
lint := rye lint -- --select I
8
8
fmt := rye fmt
9
9
mypy := $(run ) mypy
10
+ spell := $(run ) codespell
10
11
11
12
# #############################################################################
12
13
# Local "interactive testing" of the code.
@@ -63,8 +64,12 @@ stricttypecheck: # Perform a strict static type checks with mypy
63
64
test : # Run the unit tests
64
65
$(test ) -v
65
66
67
+ .PHONY : spellcheck
68
+ spellcheck : # Spell check the code
69
+ $(spell ) * .md $(src ) $(tests )
70
+
66
71
.PHONY : checkall
67
- checkall : codestyle lint stricttypecheck test # Check all the things
72
+ checkall : spellcheck codestyle lint stricttypecheck test # Check all the things
68
73
69
74
# #############################################################################
70
75
# Package/publish.
You can’t perform that action at this time.
0 commit comments