File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,10 @@ commands:
58
58
name : Install make
59
59
command : |
60
60
sudo apt-get install make
61
+ - run :
62
+ name : Install clj-kondo
63
+ command : |
64
+ sudo curl -sLO https://raw.githubusercontent.com/clj-kondo/clj-kondo/master/script/install-clj-kondo && sudo chmod +x install-clj-kondo && sudo ./install-clj-kondo
61
65
- run :
62
66
name : Generate Cache Checksum
63
67
command : |
@@ -181,3 +185,7 @@ workflows:
181
185
name : Running cljfmt
182
186
command : |
183
187
make cljfmt
188
+ - run :
189
+ name : Running clj-kondo
190
+ command : |
191
+ make kondo
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ eastwood:
24
24
cljfmt :
25
25
lein with-profile +$(CLOJURE_VERSION ) ,+cljfmt cljfmt check
26
26
27
+ kondo :
28
+ clj-kondo --lint src
29
+
27
30
cloverage :
28
31
lein with-profile +$(CLOJURE_VERSION ) ,+cloverage cloverage
29
32
You can’t perform that action at this time.
0 commit comments