blob: a55652e7443d53de9dd5dfd73b869ab3e66be325 (
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 -coverprofile=cover.out ./...
# Open coverage info in browser
cover: test
go tool cover -html=cover.out
|