Files
Paymahn Moghadasian 5729b8c1a0 Initial commit: groundcover-cli
Go CLI for the Groundcover APIs. SDK-backed commands for stable endpoints,
plus raw HAR-derived passthrough for webapp endpoints the SDK does not expose.
2026-06-05 08:45:35 -05:00

14 lines
260 B
Makefile

VERSION ?= dev
LDFLAGS := -s -w -X github.com/paymog/groundcover-cli/internal/cli.version=$(VERSION)
.PHONY: build test generate
build:
go build -ldflags "$(LDFLAGS)" ./cmd/groundcover
test:
go test ./...
generate:
go run ./scripts/generate-commands.go