Add dictionary method: pop.
[hope.git] / Makefile
index e5a2075..34c0fe9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,18 @@
-.PHONY: fresh-build compile clean dialyze
+.PHONY: \
+       ci \
+       fresh-build \
+       compile \
+       clean \
+       dialyze \
+       test
 
-fresh-build: clean compile
+ci: \
+       compile \
+       test
+
+fresh-build: \
+       clean \
+       compile
 
 compile:
        @rebar compile
@@ -10,3 +22,6 @@ clean:
 
 dialyze:
        @dialyzer ebin
+
+test:
+       @rebar ct skip_deps=true --verbose=0
This page took 0.025154 seconds and 4 git commands to generate.