mirror of https://github.com/VinGarcia/ksql.git
40 lines
951 B
Makefile
40 lines
951 B
Makefile
args=
|
|
path=./...
|
|
|
|
GOBIN=$(shell go env GOPATH)/bin
|
|
|
|
TIME=1s
|
|
|
|
test: setup
|
|
$(GOBIN)/richgo test $(path) $(args)
|
|
|
|
bench:
|
|
go test -bench=. -benchtime=$(TIME)
|
|
@echo "Benchmark executed at: $$(date --iso)"
|
|
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)"
|
|
|
|
lint: setup
|
|
@$(GOBIN)/golint -set_exit_status -min_confidence 0.9 $(path) $(args)
|
|
@go vet $(path) $(args)
|
|
@echo "Golint & Go Vet found no problems on your code!"
|
|
|
|
mock: setup
|
|
$(GOBIN)/mockgen -package=exampleservice -source=contracts.go -destination=examples/example_service/mocks.go
|
|
|
|
setup: $(GOBIN)/richgo $(GOBIN)/golint $(GOBIN)/mockgen
|
|
|
|
$(GOBIN)/richgo:
|
|
go get github.com/kyoh86/richgo
|
|
|
|
$(GOBIN)/golint:
|
|
go get golang.org/x/lint
|
|
|
|
$(GOBIN)/mockgen:
|
|
@# (Gomock is used on examples/example_service)
|
|
go get github.com/golang/mock/gomock
|
|
go get github.com/golang/mock/mockgen
|
|
|
|
# Running examples:
|
|
exampleservice: mock
|
|
$(GOPATH)/bin/richgo test ./examples/example_service/...
|