dc4bc/Makefile

14 lines
212 B
Makefile

test:
@echo "Testing Go packages..."
@go test ./... -cover
test-short:
@echo "Testing Go packages..."
@go test ./app/... -cover -short
mocks:
@echo "Regenerate mocks..."
@go generate ./...
.PHONY: mocks