10 lines
136 B
Makefile
10 lines
136 B
Makefile
|
.PHONY: test
|
||
|
test: # 進行測試
|
||
|
go test -v --cover ./...
|
||
|
|
||
|
.PHONY: fmt
|
||
|
fmt: # 格式優化
|
||
|
$(GOFMT) -w $(GOFILES)
|
||
|
goimports -w ./
|
||
|
|