.PHONY: fmt lint test

fmt:
	go fix .
	gofmt -s -w -e .

lint:
	golangci-lint run

test:
	go test -v -cover -timeout=120s -parallel=10 .
