From eee744ab5657fd44247a7af324a1f56fd122f10d Mon Sep 17 00:00:00 2001 From: bvanvugt <1531419+bvanvugt@users.noreply.github.com> Date: Mon, 20 Feb 2023 04:16:05 +0000 Subject: [PATCH] More live testing! --- .github/workflows/test.yml | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) 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}