10 lines
114 B
Makefile
10 lines
114 B
Makefile
|
.PHONY: run
|
||
|
run:
|
||
|
go run ./main.go
|
||
|
|
||
|
.PHONY: test
|
||
|
test:
|
||
|
go test -v -race -timeout 30s ./...
|
||
|
|
||
|
.DEFAULT_GOAL := run
|