More live testing!

This commit is contained in:
bvanvugt 2023-02-20 04:16:05 +00:00
parent 7f5f799403
commit eee744ab56
2 changed files with 5 additions and 0 deletions

View file

@ -36,6 +36,7 @@ jobs:
echo ---
echo ${GOPATH}
go env GOPATH
make nonsense
echo ---
make test-lint

View file

@ -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}