fix: backend tests action

This commit is contained in:
boojack 2026-04-06 11:19:31 +08:00
parent 10a955fd62
commit 065e817470
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
test-group: [store, server, plugin, other]
test-group: [store, server, internal, other]
steps:
- name: Checkout code
uses: actions/checkout@v6
@ -71,8 +71,8 @@ jobs:
server)
go test -v -race -coverprofile=coverage.out -covermode=atomic ./server/...
;;
plugin)
go test -v -race -coverprofile=coverage.out -covermode=atomic ./plugin/...
internal)
go test -v -race -coverprofile=coverage.out -covermode=atomic ./internal/...
;;
other)
go test -v -race -coverprofile=coverage.out -covermode=atomic \