about summary refs log tree commit diff stats
path: root/Makefile
blob: dc8bb1fdf468683bb6e11dae394994e601c63378 (plain)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: cover lint test

cover:
	go tool cover -html=cover.out

lint:
	golangci-lint run

test:
	go test -coverprofile=cover.out -mod=readonly ./...