This commit is contained in:
Anatoly Prohacky
2022-08-13 15:47:44 +10:00
parent 338b9e1999
commit a84816087c
7 changed files with 76 additions and 1 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
.PHONY: run
run:
go run ./main.go
.PHONY: test
test:
go test -v -race -timeout 30s ./...
.DEFAULT_GOAL := run