status-go/vendor/github.com/francoispqt/gojay/Makefile

11 lines
189 B
Makefile
Raw Normal View History

2022-04-01 16:16:46 +00:00
.PHONY: test
test:
go test -race -run=^Test -v
.PHONY: cover
cover:
go test -coverprofile=coverage.out -covermode=atomic
.PHONY: coverhtml
coverhtml:
go tool cover -html=coverage.out