policy/Makefile
Anatoly Prohacky a84816087c Test acl
2022-08-13 15:47:44 +10:00

10 lines
114 B
Makefile

.PHONY: run
run:
go run ./main.go
.PHONY: test
test:
go test -v -race -timeout 30s ./...
.DEFAULT_GOAL := run