mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 15:04:26 -08:00
10 lines
114 B
Makefile
10 lines
114 B
Makefile
SHELL = /bin/bash
|
|
.DEFAULT_GOAL := serve
|
|
.PHONY: test
|
|
|
|
test:
|
|
./tests/test_auction_flow.sh
|
|
|
|
utest:
|
|
go test ./...
|