Simplify Travis build
authorCameron Moore <moorereason@gmail.com>
Tue, 16 Aug 2016 14:09:19 +0000 (09:09 -0500)
committerCameron Moore <moorereason@gmail.com>
Tue, 16 Aug 2016 22:01:59 +0000 (17:01 -0500)
.travis.yml
Makefile

index f6a58cb5609e3fe229e5eb200dec27119badec03..0e5a008fc1e1f145e1d733aaf3110d7551aff63a 100644 (file)
@@ -19,6 +19,3 @@ script:
 before_install:
   - gem install asciidoctor
   - sudo pip install docutils
-install:
-  - go get github.com/stretchr/testify
-  - go get -v ./...
index 6dcde3c03dab3c20f9f07a7e70ba359aa5297341..222dbcc0739446a71f253660ca06619b9b006e4f 100644 (file)
--- 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 ./...