444d053e12
Removing the "structcheck" and "varcheck" linters as they've been deprecated.
level=warning msg="[runner] The linter 'structcheck' is deprecated (since v1.49.0) due to: The owner seems to have abandoned the linter. Replaced by unused."
level=warning msg="[runner] The linter 'varcheck' is deprecated (since v1.49.0) due to: The owner seems to have abandoned the linter. Replaced by unused."
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit dec03ea3d8
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
279 B
Bash
Executable file
12 lines
279 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
GOLANGCI_LINT_VERSION="v1.52.0"
|
|
|
|
#
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
#
|
|
set -eu -o pipefail
|
|
|
|
cd /tmp
|
|
go install github.com/LK4D4/vndr@latest
|
|
go install "github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}"
|