logginghandler/vendor/github.com/sonatard/noctx/Makefile
Marvin Preuss d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
build: uses go modules for tool handling
2022-01-14 13:51:56 +01:00

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