Files
jagacloud/Makefile
2025-11-23 13:37:10 +07:00

17 lines
167 B
Makefile

APP=node-agent
PKG=./...
.PHONY: build fmt tidy test
build:
go build -o bin/$(APP) ./cmd/node-agent
fmt:
go fmt $(PKG)
tidy:
go mod tidy
test:
go test $(PKG)