diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 07be491..f4b6cc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,4 +26,4 @@ jobs: run: go mod tidy - name: UnitTest - run: go test -v ./... + run: make test diff --git a/Makefile b/Makefile index f2cf266..8b8c4f6 100644 --- a/Makefile +++ b/Makefile @@ -4,4 +4,4 @@ tidy: .PHONY: test test: tidy - @go test ./... + @go test -v ./...