mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
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:
parent
03c898e3b6
commit
3a28116813
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user