diff options
| author | Shulhan <ms@kilabit.info> | 2023-05-14 17:54:32 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-05-14 17:54:32 +0700 |
| commit | 3df554eb34b449dd5fad0239eb738beebe1debbb (patch) | |
| tree | 0e81292291297181b5b82d2222da462773c71c6e /Makefile | |
| parent | c65714879048a273136121fdc31e03aa63c7ab34 (diff) | |
| download | ciigo-3df554eb34b449dd5fad0239eb738beebe1debbb.tar.xz | |
all: generate HTML test coverage on task test
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,7 +14,8 @@ lint: test: go run ./cmd/ciigo-example embed - CGO_ENABLED=1 go test -failfast -v -race -p=1 ./... + CGO_ENABLED=1 go test -failfast -v -race -p=1 -coverprofile=cover.out ./... + go tool cover -html=cover.out -o cover.html install: build mv _bin/ciigo $(GOBIN) |
