From 7e5f7411d4d4de299d5e8a076e72989fa5abc425 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Sat, 23 Mar 2024 13:43:24 -0700 Subject: [PATCH] debug generate coverage report --- .gitea/workflows/test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 7e33225..952709a 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -30,6 +30,11 @@ jobs: - name: Run tests run: | go test -coverprofile=artifacts/coverage.profile ./... + - name: debug coverage report + run: | + echo $GITEA_STEP_SUMMARY + cat artifacts/coverage.profile + - run: echo "This job's status is ${{ job.status }}." - name: coverage report run: | cat artifacts/coverage.profile >> $GITEA_STEP_SUMMARY