blob: 21599a40925d65bf06fe4d465220eda62ebbc95c [file] [log] [blame]
.PHONY: all
all: test
##@ Development
.PHONY: fmt
fmt: ## Run go fmt against code.
go fmt ./...
.PHONY: vet
vet: ## Run go vet against code.
go vet ./...
.PHONY: test
test: fmt vet ## Run tests.
go test ./... -coverprofile cover.out
.PHONY: clean
clean:
rm -rf bin/