From f0eb19f7d554e3452523033757663cc0b6fc5bd1 Mon Sep 17 00:00:00 2001 From: bvanvugt <1531419+bvanvugt@users.noreply.github.com> Date: Mon, 20 Feb 2023 04:47:22 +0000 Subject: [PATCH] Nailed it. --- .github/workflows/test.yml | 7 +------ Makefile | 7 ------- 2 files changed, 1 insertion(+), 13 deletions(-) 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}