tendermint/Makefile

12 lines
188 B
Makefile
Raw Normal View History

2016-06-23 20:36:59 -04:00
.PHONY: all test get_deps
all: test
2017-01-12 21:46:50 -05:00
test: get_deps
2016-07-22 01:15:52 -04:00
go test --race github.com/tendermint/go-rpc/...
2016-06-23 20:36:59 -04:00
cd ./test && bash test.sh
get_deps:
2017-01-12 21:46:50 -05:00
go get -t -u github.com/tendermint/go-rpc/...