summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1d4e5c805482adc522366d5651093e77fbf3b9ac (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 ./interp
	
# Open coverage info in browser
cover: test
	go tool cover -html=cover.out