workgroups/vendor/github.com/sonatard/noctx/Makefile
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +02: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 ./...