Skip to content

Commit

Permalink
ci: this needs runner.temp too
Browse files Browse the repository at this point in the history
  • Loading branch information
Fayti1703 committed Apr 26, 2024
1 parent 6fa8aad commit 80d1c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:
- name: Produce Job Summary
run: |
printf "${{ steps.run_tests.outcome == 'success' && 'Test run success!' || 'Test run **FAILED**!' }}\n**Engine Coverage**: %s%%\n**Test Code Utilization**: %s%%" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine") | .CoveragePercent' "$HOME/coverage.json")" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine.Tests") | .CoveragePercent' "$HOME/coverage.json")" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine") | .CoveragePercent' "${{ runner.temp }}/coverage.json")" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine.Tests") | .CoveragePercent' "${{ runner.temp }}/coverage.json")" \
> $GITHUB_STEP_SUMMARY

0 comments on commit 80d1c6f

Please sign in to comment.