blob: 0ff37bce26958cfa86882c911335287f42296279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: lint test bench
lint:
golangci-lint run --timeout 5m
test:
go test -covermode=atomic -race ./...
bench:
go test -bench=. -benchmem ./...
.PHONY: test lint bench
.DEFAULT_GOAL := all
|