6a61186a64
* bump to go 1.16 * remove unneeded part in travis/install.sh
9 lines
228 B
Bash
Executable File
9 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# 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
|