mirror of
https://github.com/lukaszraczylo/compaction-mcp.git
synced 2026-06-05 23:14:02 +00:00
dded4ec04c
- Dockerfile: distroless container for MCP server - GoReleaser: multi-platform binary and Docker builds with cosign signing - GitHub Actions: release workflow using shared actions - Semver config for automatic version calculation - Persistence layer, content indexing, and improved tool handlers
18 lines
233 B
Makefile
18 lines
233 B
Makefile
BINARY := compactor
|
|
BUILDFLAGS := -buildvcs=false -trimpath
|
|
|
|
.PHONY: build clean test lint
|
|
|
|
build:
|
|
go build $(BUILDFLAGS) -o $(BINARY) .
|
|
|
|
clean:
|
|
rm -f $(BINARY)
|
|
|
|
test:
|
|
go test -race -count=1 ./...
|
|
|
|
lint:
|
|
go vet ./...
|
|
gofmt -l .
|