diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a25fa9c..e5fbdc3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,12 +32,7 @@ jobs: with: go-version: '${{ env.GO_VERSION }}' check-latest: true - - run: | - echo --- - echo make nonsense - make nonsense - echo --- - make test-lint + - run: make test-lint tests: name: Test (go test) diff --git a/Makefile b/Makefile index 7d6e7b2..480e296 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,6 @@ GOLANGCI_LINT_PATH := ${GOPATH}/bin/golangci-lint GOLANGCI_LINT_VERSION := 1.51.1 -nonsense: - which go - go version - go env GOPATH - 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}