7 lines
72 B
Makefile
7 lines
72 B
Makefile
.PHONY: build test
|
|
|
|
build:
|
|
go build -o build/
|
|
|
|
test:
|
|
go test -v ./...
|