campaigner/Makefile

15 lines
158 B
Makefile
Raw Normal View History

2020-02-29 01:21:29 +01:00
.PHONY: vendor
2020-02-28 23:34:24 +01:00
vendor:
go mod vendor
go mod tidy
check:
golangci-lint run -E gofmt ./...
build:
go build -mod=vendor
install:
go install -mod=vendor