9 lines
74 B
Makefile
9 lines
74 B
Makefile
.PHONY: all build test
|
|
|
|
all: build test
|
|
|
|
build:
|
|
go build
|
|
|
|
test:
|
|
go test
|