fix: CI 测试排除路径 mylib → libs

This commit is contained in:
ZacharyZcR
2026-06-01 08:40:14 +08:00
parent 5078fbc975
commit cc1af631f0
+1 -1
View File
@@ -125,7 +125,7 @@ jobs:
- name: 运行测试
run: |
# 排除第三方grdp库测试(存在环境依赖问题)
PKGS=$(go list ./... | grep -v '/mylib/grdp/')
PKGS=$(go list ./... | grep -v '/libs/grdp/')
go test -vet=off -race -coverprofile=coverage.out -covermode=atomic $PKGS
- name: 上传覆盖率