File tree 3 files changed +9
-10
lines changed
3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,6 @@ 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
69
65
- run :
70
66
name : Generate Cache Checksum
71
67
command : |
@@ -209,10 +205,6 @@ workflows:
209
205
name : Code Linting, (latest LTS JDK)
210
206
jdk_version : openjdk11
211
207
steps :
212
- - run :
213
- name : Running Eastwood
214
- command : |
215
- make eastwood
216
208
- run :
217
209
name : Running cljfmt
218
210
command : |
@@ -221,6 +213,10 @@ workflows:
221
213
name : Running clj-kondo
222
214
command : |
223
215
make kondo
216
+ - run :
217
+ name : Running Eastwood
218
+ command : |
219
+ make eastwood
224
220
# - util_job:
225
221
# name: Code coverage
226
222
# steps:
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cljfmt:
20
20
lein with-profile +$(VERSION ) ,+cljfmt cljfmt check
21
21
22
22
kondo :
23
- clj-kondo --lint src test
23
+ lein with-profile -dev,+ clj-kondo run -m clj-kondo.main --lint src test
24
24
25
25
# Cloverage can't handle some of the code in this project. For now we
26
26
# must filter problematic namespaces (`-e`) and tests (`-t`) from
Original file line number Diff line number Diff line change 58
58
with-debug-bindings [[:inner 0 ]]
59
59
merge-meta [[:inner 0 ]]
60
60
letfn [[:block 1 ] [:inner 2 ]]}}}
61
-
61
+
62
+ :clj-kondo [:test
63
+ {:dependencies [[clj-kondo " 2021.03.31" ]]}]
64
+
62
65
:eastwood {:plugins [[jonase/eastwood " 0.4.0" ]]
63
66
:eastwood {:exclude-namespaces [~(if (-> " java.version"
64
67
System/getProperty
You can’t perform that action at this time.
0 commit comments