diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 87b000a..c67d7b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,7 @@ jobs: echo --- echo ${GOPATH} go env GOPATH + make nonsense echo --- make test-lint diff --git a/Makefile b/Makefile index fc97eec..7cf53e2 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ GOLANGCI_LINT_PATH := $(GOPATH)/bin/golangci-lint GOLANGCI_LINT_VERSION := 1.51.1 +nonsense: + echo "Installing golangci-lint to ${GOPATH} ${GOLANGCI_LINT_PATH} ${GOLANGCI_LINT_VERSION}" +.PHONY: nonsense + ${GOLANGCI_LINT_PATH}: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ${GOPATH}/bin v${GOLANGCI_LINT_VERSION}