blob: b4368aa32bb567d0bbe29a55595c9484ec85fc96 [file] [log] [blame]
SHELL = /bin/bash
export PATH := $(shell yarn global bin):$(PATH)
default: lint test
test:
go test -race -v ./...
benchmark:
go test -bench '.' -benchtime=2s -benchmem ./... | tee output.txt
lint:
golangci-lint run --verbose