RestApiv2/Makefile

9 lines
125 B
Makefile

.PHONY: build
build:
go build -v ./cmd/rest
.DEFAULT_GOAL := build
.PHONY: test
test:
go test -v -race -timeout 30s ./...