blob: 3d7c94e2150a2d596aeea67a313366de97ba6bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Static linting of source files. See .golangci.yaml for options.
lint:
golangci-lint run
# Run tests with race detector, measure coverage.
test:
go test -race -covermode=atomic -coverpkg=./... -coverprofile=cover.out ./...
# Open coverage info in browser
cover: test
go tool cover -html=cover.out
|