a2479a3ade
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
11 lines
242 B
Makefile
11 lines
242 B
Makefile
PACKAGE=github.com/nspcc-dev/neofs-contract
|
|
NEOGO?=neo-go
|
|
|
|
.PHONY: build tests
|
|
|
|
build:
|
|
$(NEOGO) contract compile -i neofs_contract.go -c neofs_config.yml -m neofs.manifest.json
|
|
|
|
tests:
|
|
go mod vendor
|
|
go test -mod=vendor -v -race $(PACKAGE)
|