From 6edfec1c82c89409f4c2483c8e5eb114086230cb Mon Sep 17 00:00:00 2001 From: Carl Baldwin Date: Mon, 3 Jun 2024 17:11:38 -0600 Subject: [PATCH] do not run static check --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 8cdc6a6..c012fce 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: test vet staticcheck fmt +all: test vet fmt test: go test -v ./... @@ -8,10 +8,6 @@ vet: go vet ./... .PHONY: vet -staticcheck: - staticcheck ./... -.PHONY: staticcheck - fmt: go fmt ./... .PHONY: fmt