dc4bc/Makefile

10 lines
133 B
Makefile
Raw Normal View History

2020-07-30 03:29:47 -07:00
test:
@echo "Testing Go packages..."
@go test ./... -cover
mocks:
@echo "Regenerate mocks..."
@go generate ./...
2020-07-30 04:31:11 -07:00
.PHONY: mocks