Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- .PHONY: all test clean build install
-
- GOFLAGS ?= $(GOFLAGS:)
-
- all: test build
-
- build:
- @go get -v ./...
-
- test: build
- @go test -v ./...
-
- bench: install
- @go test -run=NONE -bench=. $(GOFLAGS) ./...
|