mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
- guide shamelessly stolen from prometheus/prometheus - updates local interface of oauth exchange - updates local impl of hclogger - bump jaeger client version closes #16088
21 lines
385 B
Makefile
21 lines
385 B
Makefile
.DEFAULT_GOAL := test-and-lint
|
|
|
|
.PHONY: test-and-lint
|
|
test-and-lint: test lint
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v -cover -race ./...
|
|
|
|
.PHONY: cover
|
|
cover:
|
|
go test -v -coverprofile=coverage.txt -covermode=atomic -race ./...
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
go fmt ./...
|
|
golint ./...
|
|
@# Run again with magic to exit non-zero if golint outputs anything.
|
|
@! (golint ./... | read dummy)
|
|
go vet ./...
|