Files
kapow/Makefile
César Gallego Rodríguez 9ccd3cd61a No new deps
Co-authored-by: Nilpointer <robertomartinezp@gmail.com>
2019-09-04 12:40:22 +02:00

17 lines
304 B
Makefile

.PHONY: test install acceptance deps
all: acceptance
test: deps
go test -race -coverprofile=/tmp/c.out github.com/BBVA/kapow/pkg/...
go tool cover -html=/tmp/c.out -o coverage.html
install: test
go install github.com/BBVA/kapow/...
acceptance: install
make -C spec/test
deps:
@echo "deps here"