From 3e7bab01930bfce08de6ec9751b3e5125fded499 Mon Sep 17 00:00:00 2001 From: Oleg Kovalov Date: Thu, 28 Feb 2019 12:13:55 +0100 Subject: [PATCH] Makefile: remove go get -u (#815) Fixes #812 --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3ec70300a..82d790c0a 100644 --- a/Makefile +++ b/Makefile @@ -21,13 +21,12 @@ ci: @if [ "$(TEST_SUITE)" = "linter" ]; then make ci-linter; else make ci-tests; fi ci-tests: - go get -u github.com/go-lintpack/lintpack/... go test -v -race -count=1 -coverprofile=coverage.out ./... ci-linter: - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin v1.12.3 + curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin v1.15.0 golangci-lint run -v - go get -u github.com/Quasilyte/go-consistent + go get github.com/Quasilyte/go-consistent go-consistent ./... cover: