From 3a2811681361533b3f8436041ce8f125de70cc6b Mon Sep 17 00:00:00 2001 From: Rashit Azizbaev Date: Sun, 17 Jan 2021 09:33:07 +0300 Subject: [PATCH] Use recommended way to install golangci-lint to avoid failing builds See https://golangci-lint.run/usage/install/#install-from-source --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2ad76be..7541030 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ go: - master env: - GO111MODULE=on + GOLANGCI_LINT_VERSION=1.35.2 services: - docker @@ -20,6 +21,6 @@ script: - go test -coverprofile=coverage.txt -covermode=atomic - INTEGRATION=TRUE go test - go build -v ./ - - if [[ "$(go version)" =~ "go version go1.11" ]]; then exit 0; else go get -u github.com/golangci/golangci-lint/cmd/golangci-lint && golangci-lint run -v; fi + - if [[ "$(go version)" =~ "go version go1.11" ]]; then exit 0; else curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin "v${GOLANGCI_LINT_VERSION}" && golangci-lint run -v; fi after_success: - bash <(curl -s https://codecov.io/bash)