docker-register-manager/Makefile

13 lines
148 B
Makefile
Raw Normal View History

2024-09-29 23:32:56 +03:00
.PHONY: build fmt lint
build: fmt lint
go build .
fmt:
gofmt -w -r "interface{} -> any" .
go fmt ./...
lint:
go vet ./...
staticcheck ./...