fix(test): stabilize sub2api callback flow in ci
All checks were successful
CI / verify (push) Successful in 45s

This commit is contained in:
Your Name
2026-05-06 12:36:19 +08:00
parent 06eeb5776b
commit 631ba80899
2 changed files with 71 additions and 34 deletions

View File

@@ -39,12 +39,12 @@ jobs:
- name: Run unit and integration tests
run: |
cd "$WORKSPACE_DIR"
go test ./... -count=1
go test ./... -count=1 -p 1
- name: Run race tests
run: |
cd "$WORKSPACE_DIR"
go test -race ./...
go test -race ./... -p 1
- name: Run vet
run: |