From d47cd923f5fc5f04f0222e858c5e49dbf771789b Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Sat, 23 Mar 2024 16:55:08 -0700 Subject: [PATCH] debug generate coverage report --- .gitea/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 952709a..542154c 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -32,10 +32,10 @@ jobs: go test -coverprofile=artifacts/coverage.profile ./... - name: debug coverage report run: | - echo $GITEA_STEP_SUMMARY + echo $GITHUB_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 + cat artifacts/coverage.profile >> $GITHUB_STEP_SUMMARY - run: echo "This job's status is ${{ job.status }}."