11 lines
77 B
Makefile
11 lines
77 B
Makefile
all: build
|
|
|
|
build:
|
|
go build ./...
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
test:
|
|
go test ./...
|