Skip to content

Commit

Permalink
Couldn't resolve env.RUNNER_TEMP so just output test results to PWD
Browse files Browse the repository at this point in the history
  • Loading branch information
flwyd committed Feb 4, 2024
1 parent 99d2496 commit 88d4ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
go-version-file: go.mod
cache: true
- name: Test
run: go test -v ./... | tee "${RUNNER_TEMP}/go-test-results.txt"
run: go test -v ./... | tee go-test-results.txt
- uses: actions/upload-artifact@v4
with:
name: go-test-results
path: "${{ env.RUNNER_TEMP }}/go-test-results.txt"
path: go-test-results.txt

build:
needs: test
Expand Down

0 comments on commit 88d4ec5

Please sign in to comment.