add checks and tests

master
Josha von Gizycki 6 years ago
parent 98a38b4009
commit 985c9159bf

@ -12,5 +12,7 @@
clone
compile
(in-parallel
check-ancient
test))))
ancient
test
eastwood
bikeshed))))

@ -16,7 +16,7 @@
ref (or revision repo-branch)]
(lcd-git/clone ctx repo-uri ref cwd)))
(defn check-ancient [args ctx]
(defn ancient [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein ancient"))
(defn compile [args ctx]
@ -24,3 +24,9 @@
(defn test [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein test"))
(defn bikeshed [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein bikeshed"))
(defn eastwood [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein eastwood"))

Loading…
Cancel
Save