unit test

This commit is contained in:
haibo.chen
2025-10-15 09:14:33 +08:00
parent b0fce4380f
commit 4c7485f4ef
7 changed files with 1423 additions and 0 deletions

View File

@ -50,6 +50,12 @@ jobs:
- name: Run Go tests
run: go test -v ./...
- name: Run Go tests with coverage
run: go test ./pkg/... -coverprofile=coverage.out -covermode=atomic
- name: Display coverage report
run: go tool cover -func=coverage.out
- name: Install Vue dependencies
run: make vue-install