From 190c518132c0b97bf0a3fa6519549920acc000d0 Mon Sep 17 00:00:00 2001 From: sue445 Date: Sat, 13 Jul 2024 19:54:10 +0900 Subject: [PATCH] Remove unused tasks --- Makefile | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Makefile b/Makefile index c165bac..77c6ac4 100644 --- a/Makefile +++ b/Makefile @@ -63,21 +63,9 @@ testrace: fmt: go fmt ./... -.PHONY: fmtci -fmtci: - ! gofmt -d . | grep '^' - -.PHONY: lint -lint: - golint -set_exit_status ./... - -.PHONY: vet -vet: - go vet ./... - .PHONY: integration_test integration_test: build build-oracle go test _integration/check_readme_test.go .PHONY: test_all -test_all: test testrace fmt lint vet integration_test +test_all: test testrace fmt integration_test