1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-03-29 21:46:58 +02:00

build(make): add go test coverage command

This commit is contained in:
Niko Köser 2022-04-26 01:03:41 +02:00
parent 5e758e29a8
commit be7f51f5bb
No known key found for this signature in database
GPG Key ID: F3F28C118DAA6375

View File

@ -19,6 +19,10 @@ test:
go test -failfast -race -timeout=5m ./...
.PHONY: test
cover:
go test -race -covermode=atomic -coverprofile=coverage.out ./...
.PHONY: cover
###############################################################################
# CODE HEALTH
###############################################################################