add checks and tests

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

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

@ -16,7 +16,7 @@
ref (or revision repo-branch)] ref (or revision repo-branch)]
(lcd-git/clone ctx repo-uri ref cwd))) (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")) (lcd-shell/bash ctx (:cwd args) "lein ancient"))
(defn compile [args ctx] (defn compile [args ctx]
@ -24,3 +24,9 @@
(defn test [args ctx] (defn test [args ctx]
(lcd-shell/bash ctx (:cwd args) "lein test")) (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