5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 06:42:31 +00:00
matterbridge/vendor/github.com/francoispqt/gojay/Makefile

11 lines
189 B
Makefile
Raw Normal View History

2020-08-09 22:29:54 +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