Files
paralus/Makefile
2022-06-08 17:21:22 +05:30

30 lines
353 B
Makefile

.PHONY: tidy
tidy:
GOPRIVATE=github.com/paralus/* go mod tidy
.PHONY: vendor
vendor:
go mod vendor
.PHONY: build-proto
build-proto:
buf build
.PHONY: gen-proto
gen-proto:
buf generate
.PHONY: test
test:
go test ./...
.PHONY: check
check:
go fmt ./...
go vet ./...
.PHONY: clean
clean:
rm -rf ./**/gen
find . -name "*.pb*" -type f -delete