tl/Makefile
2025-07-01 13:32:45 +05:00

10 lines
89 B
Makefile

all: fmt vet test
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test -vet=off ./...