From 109cb03faea0bcfeab3fa23e261d349c2c15f204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Friedrich=20Gro=C3=9Fe?= Date: Thu, 30 May 2019 14:47:19 +0200 Subject: [PATCH] Update TravisCI to fail if dependencies are missing in go.mod --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e9613ac..9b9d774 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,12 +20,7 @@ services: go: - tip - - 1.8.x - - 1.7.4 - -install: - - go get -t ./... + - 1.12.x script: - - go test -i -race ./... - - go test -v -race ./... + - go test -v -race -mod=readonly ./...