From 40e48ce6ed9720e94087fff8337b8cbdac0e892e Mon Sep 17 00:00:00 2001 From: Mark Bates Date: Wed, 26 Sep 2018 10:06:20 -0400 Subject: [PATCH] use a separate travis install command --- .travis.yml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d5ba1b6..405a8d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,8 @@ go: - 1.11.x - tip +install: make deps + script: make ci-test matrix: diff --git a/Makefile b/Makefile index e2189c5..8ff2ae2 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ test: packr $(GO_BIN) test -tags ${TAGS} ./... -ci-test: deps +ci-test: $(GO_BIN) test -tags ${TAGS} -race ./... lint: