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 @@ -62,6 +62,10 @@ commands:
62
62
name : Install make
63
63
command : |
64
64
sudo apt-get install make
65
+ - run :
66
+ name : Install clj-kondo
67
+ command : |
68
+ 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
65
69
- run :
66
70
name : Generate Cache Checksum
67
71
command : |
@@ -213,6 +217,10 @@ workflows:
213
217
name : Running cljfmt
214
218
command : |
215
219
make cljfmt
220
+ - run :
221
+ name : Running clj-kondo
222
+ command : |
223
+ make kondo
216
224
# - util_job:
217
225
# name: Code coverage
218
226
# steps:
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ eastwood:
19
19
cljfmt :
20
20
lein with-profile +$(VERSION ) ,+cljfmt cljfmt check
21
21
22
+ kondo :
23
+ clj-kondo --lint src
24
+
22
25
# Cloverage can't handle some of the code in this project. For now we
23
26
# must filter problematic namespaces (`-e`) and tests (`-t`) from
24
27
# instrumentation. Note: this means for now coverage reporting isn't
You can’t perform that action at this time.
0 commit comments