2026-01-05 13:54:43 +08:00
|
|
|
.PHONY: build test test-unit test-integration test-e2e
|
2025-12-30 16:41:45 +08:00
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
go build -o bin/server ./cmd/server
|
|
|
|
|
|
2026-01-05 13:54:43 +08:00
|
|
|
test:
|
|
|
|
|
go test ./...
|
|
|
|
|
golangci-lint run ./...
|
|
|
|
|
|
2025-12-30 16:41:45 +08:00
|
|
|
test-unit:
|
|
|
|
|
go test -tags=unit ./...
|
|
|
|
|
|
|
|
|
|
test-integration:
|
|
|
|
|
go test -tags=integration ./...
|
|
|
|
|
|
|
|
|
|
test-e2e:
|
2026-02-08 12:05:39 +08:00
|
|
|
./scripts/e2e-test.sh
|
|
|
|
|
|
|
|
|
|
test-e2e-local:
|
|
|
|
|
go test -tags=e2e -v -timeout=300s ./internal/integration/...
|