chore: run go test on github actions

This commit is contained in:
Siyuan Miao 2025-05-16 19:49:25 +02:00
parent 606e0769f9
commit 301556868d
1 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,13 @@ jobs:
- name: Build application
run: |
make build_dev
- name: Run tests
run: |
go test ./... -json > testreport.json
- name: Golang Test Report
uses: becheran/go-testreport@v0.3.2
with:
output: "testreport.json"
- name: Upload artifact
uses: actions/upload-artifact@v4
with: