Marvin Preuss
1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
232 B
Makefile
16 lines
232 B
Makefile
.PHONY: clean check test build
|
|
|
|
default: clean check test build
|
|
|
|
clean:
|
|
rm -rf dist/ cover.out
|
|
|
|
test: clean
|
|
go test -v -cover ./...
|
|
|
|
check:
|
|
golangci-lint run
|
|
|
|
build:
|
|
go build -v -ldflags "-s -w" -trimpath ./cmd/gomoddirectives/
|