mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 15:02:13 +08:00
14 lines
221 B
Makefile
14 lines
221 B
Makefile
|
|
.PHONY: build test-unit test-integration test-e2e
|
||
|
|
|
||
|
|
build:
|
||
|
|
go build -o bin/server ./cmd/server
|
||
|
|
|
||
|
|
test-unit:
|
||
|
|
go test -tags=unit ./...
|
||
|
|
|
||
|
|
test-integration:
|
||
|
|
go test -tags=integration ./...
|
||
|
|
|
||
|
|
test-e2e:
|
||
|
|
go test -tags=e2e ./...
|