7 lines
91 B
Makefile
7 lines
91 B
Makefile
|
SHELL = /bin/bash
|
||
|
.DEFAULT_GOAL := serve
|
||
|
.PHONY: test
|
||
|
|
||
|
test:
|
||
|
./tests/test_auction_flow.sh
|