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