dc4bc/Makefile

14 lines
212 B
Makefile
Raw Normal View History

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