15 lines
191 B
Makefile
15 lines
191 B
Makefile
|
-include ../../Makefile.help
|
||
|
|
||
|
.PHONY: artifacts
|
||
|
artifacts: build
|
||
|
|
||
|
.PHONY: build
|
||
|
## Build contract
|
||
|
build:
|
||
|
aptos move compile --save-metadata
|
||
|
|
||
|
.PHONY: test
|
||
|
## Run tests
|
||
|
test:
|
||
|
aptos move test
|