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:
|
|
|
|
|
go test -tags=e2e ./...
|