build:
	go build -v ./...

test:
	go test -v ./...

lint:
	golangci-lint run

bench:
	go test -benchmem -bench .
