From 6b7905c90ede3211689ce2baf0a29bd7596b050f Mon Sep 17 00:00:00 2001 From: Matt Quinn Date: Mon, 29 Mar 2021 19:55:46 -0400 Subject: [PATCH] Fix install command in travis config The `go mod install` command does not exist - this was probably meant to be `go mod download`. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0a73339..5471768 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ go: - 1.14 install: - - go mod install + - go mod download script: - go test -v -race -coverprofile=coverage.txt -covermode=atomic