aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sonatard/noctx/Makefile
blob: 1a27f6b595aa0472f52b0015dd3f250d142769b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: all imports test lint

all: imports test lint

imports:
	goimports -w ./

test:
	go test -race ./...

test_coverage:
	go test -race -coverprofile=coverage.out -covermode=atomic ./...

lint:
	golangci-lint run ./...