frostfs-contract/Makefile

12 lines
234 B
Makefile
Raw Normal View History

2020-03-30 13:59:54 +00:00
PACKAGE=github.com/nspcc-dev/neofs-contract
NEOGO?=neo-go
.PHONY: build tests
build:
2020-07-15 08:47:29 +00:00
$(NEOGO) contract compile -i neofs_contract.go -c neofs_config.yml -m config.json
2020-03-30 13:59:54 +00:00
tests:
go mod vendor
go test -mod=vendor -v -race $(PACKAGE)