campaigner/Makefile
2023-08-03 12:47:34 +02:00

14 lines
134 B
Makefile

.PHONY: vendor
vendor:
go mod vendor
go mod tidy
check:
golangci-lint run -E gofmt ./...
build:
go build
install:
go install