Use recommended way to install golangci-lint to avoid failing builds

See https://golangci-lint.run/usage/install/#install-from-source
This commit is contained in:
Rashit Azizbaev 2021-01-17 09:33:07 +03:00
parent 03c898e3b6
commit 3a28116813

View File

@ -6,6 +6,7 @@ go:
- master - master
env: env:
- GO111MODULE=on - GO111MODULE=on
GOLANGCI_LINT_VERSION=1.35.2
services: services:
- docker - docker
@ -20,6 +21,6 @@ script:
- go test -coverprofile=coverage.txt -covermode=atomic - go test -coverprofile=coverage.txt -covermode=atomic
- INTEGRATION=TRUE go test - INTEGRATION=TRUE go test
- go build -v ./ - 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: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)