From a5c3bec92889cd6cd50008ca32680ceaa7fde430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Friedrich=20Gro=C3=9Fe?= Date: Thu, 30 May 2019 15:23:12 +0200 Subject: [PATCH] Prevent default TravisCI install action --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index f541340..ca39e27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,5 +25,10 @@ go: - tip - 1.12.x +install: + - # Do nothing. This is needed to prevent the default install action + # "go get -t -v ./..." from happening here because we want it to happen + # inside script step. + script: - go test -v -race -mod=readonly ./...