bump golangci-lint version

This commit is contained in:
David Bariod 2020-11-06 13:26:15 +01:00
parent 0d28e29335
commit 581900062e
3 changed files with 6 additions and 11 deletions

View File

@ -4,8 +4,8 @@ git:
depth: 1
env:
- GO111MODULE=on
go: [1.14.x, 1.15.x]
os: [linux, osx]
go: 1.15.x
os: linux
install:
- ./travis/install.sh
script:

View File

@ -2,9 +2,9 @@
set -e
# Install golanci 1.21.0
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.13\. ]]; then
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.21.0
# Install golanci 1.32.2
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.15\. ]]; then
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.32.2
fi
# Only do this for go1.12 when modules are on so that it doesn't need to be done when modules are off as well.
@ -15,8 +15,3 @@ fi
if [[ "$GO111MODULE" == "on" ]]; then
go mod download
fi
if [[ "$GO111MODULE" == "off" ]]; then
# Should contain all regular (not indirect) modules from go.mod
go get github.com/stretchr/testify golang.org/x/sys/unix golang.org/x/sys/windows
fi

View File

@ -1,6 +1,6 @@
#!/bin/bash
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.13\. ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$GO111MODULE" == "on" ]]; then
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.15\. ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$GO111MODULE" == "on" ]]; then
$(go env GOPATH)/bin/golangci-lint run ./...
else
echo "linter has not been run"