summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2016-08-16 09:09:19 -0500
committerCameron Moore <moorereason@gmail.com>2016-08-16 17:01:59 -0500
commitd3627b1747c18eb18279012afe5ba7174bdaa869 (patch)
tree0ec6b773e0aa74126e3819a282051225f30e212a /Makefile
parentd72c454f78e1d2d099bef19221fb3065e0889b99 (diff)
Simplify Travis build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6dcde3c03..222dbcc07 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ docker:
docker rm hugo-build
-check: fmt vet test test-race
+check: get fmt vet test test-race
cyclo:
@for d in $(DIRS) ; do \
@@ -56,6 +56,9 @@ lint:
echo "^ golint errors!" && echo && exit 1; \
fi
+get:
+ go get -v -t ./...
+
test:
go test ./...