woodpecker/vendor/github.com/sonatard/noctx/Makefile
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

16 lines
224 B
Makefile

.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 ./...