8 lines
72 B
Makefile
8 lines
72 B
Makefile
.PHONY: test
|
|
test:
|
|
go test ./...
|
|
|
|
.PHONY: build
|
|
build:
|
|
go build ./...
|