mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 05:54:25 -08:00
12 lines
184 B
Makefile
12 lines
184 B
Makefile
SHELL = /bin/bash
|
|
.DEFAULT_GOAL := serve
|
|
.PHONY: test
|
|
|
|
test:
|
|
./tests/test_locking_funds.sh
|
|
./tests/test_auction_flow.sh
|
|
./tests/test_auction_flow_verified.sh
|
|
|
|
utest:
|
|
go test ./...
|