moving makefile
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
.DEFAULT_GOAL := build
|
||||
|
||||
.PHONY:fmt vet build
|
||||
fmt:
|
||||
go fmt ./...
|
||||
|
||||
vet: fmt
|
||||
go vet ./...
|
||||
|
||||
build:
|
||||
go build ./...
|
||||
|
||||
test:
|
||||
go test ./tests/...
|
||||
Reference in New Issue
Block a user