Files
mototrbo/Makefile
William Gill 81c62ac012
Some checks failed
ci / test (ubuntu-latest) (push) Failing after 47s
ci / test (windows-latest) (push) Has been cancelled
ci / lint (push) Has been cancelled
Initial commit
2026-04-08 08:56:45 -05:00

21 lines
193 B
Makefile

.PHONY: build test lint fmt vet tidy
build:
go build ./cmd/...
test:
go test -race ./...
lint:
staticcheck ./...
fmt:
gofmt -w .
goimports -w .
vet:
go vet ./...
tidy:
go mod tidy