add make target for agent

This commit is contained in:
Tanishq Dubey 2025-05-10 19:37:25 -04:00
parent 54256fd34d
commit 3f01b3aa9d
No known key found for this signature in database
GPG Key ID: CFC1931B84DFC3F9

View File

@ -20,6 +20,11 @@ test: generate
@echo "Running tests..."
@go test -count=1 ./...
kat-agent:
@echo "Building kat-agent..."
@go build -o kat-agent ./cmd/kat-agent/main.go
lint:
@echo "Running linter..."
@if ! command -v golangci-lint &> /dev/null; then \