- Agent roles and coordination features - Chat API integration testing - New configuration and workspace management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
128 B
Makefile
11 lines
128 B
Makefile
.PHONY: ci generate clean
|
|
|
|
ci: clean generate
|
|
go test -race -v ./...
|
|
|
|
generate:
|
|
go generate .
|
|
|
|
clean:
|
|
rm -rf *_generated*.go
|