From d82b6402e739d4e08c35f8a3018a55e128b6c854 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 30 Jul 2022 23:09:57 +0700 Subject: [PATCH] chore: remove cover from Makefile --- Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 092ab58..ef7cb0a 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,9 @@ -.PHONY: all test coverage-cli coverate-html lint +.PHONY: all test lint all: test lint test: - go test -race -coverprofile=coverage.out ./... - -coverage-cli: test - go tool cover -func=coverage.out - -coverage-html: test - go tool cover -html=coverage.out + go test -race -failfast ./... lint: golangci-lint run ./...