delphi.market/Makefile
ekzyis 18107bdac8 Only test handler package and use -v
since there are only tests in the handler package so far
2023-11-03 23:00:11 +01:00

15 lines
240 B
Makefile

.PHONY: build run test
SOURCE := $(shell find db env lib lnd pages public server -type f)
build: delphi.market
delphi.market: $(SOURCE)
go build -o delphi.market .
run:
go run .
test:
go test -v -count=1 ./server/router/handler/...