policy/Makefile

10 lines
114 B
Makefile
Raw Permalink Normal View History

2022-08-13 08:47:44 +03:00
.PHONY: run
run:
go run ./main.go
.PHONY: test
test:
go test -v -race -timeout 30s ./...
.DEFAULT_GOAL := run