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