CodeCoverageSummary
CodeCoverageSummary copied to clipboard
Add ability to add summary to a section on the left (runs?) on github actions page
Feature Request
It would be nice if we could output a summary on the side (not sure of the term) on github actions, much like our unit test task does

As you can see on the left (bit I mean above) our unit test task outputs a section with the results, and it would be nice if the code coverage summary also wrote out to that section there too.
Expected Behaviour
Have a property that can be set to indicate if the summary should be output as a summary on the side
Hi @grofit I've not seen that done before. Could you tell me what task you're using to get those results?
Hey,
Thanks for getting back to me, its https://github.com/EnricoMi/publish-unit-test-result-action I use to get Unit Test results
Thanks, it would be a nice feature so I'll see if I can work out how he's doing it.
Supercharging GitHub Actions with Job Summaries
Simply output Markdown content to a new environment variable we’ve introduced called
$GITHUB_STEP_SUMMARY.
@grofit As a workaround you could add the following step to your workflow after CCS:
- name: Output to Job Summary
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
That doesn't add the item on the left but it does add the coverage to the job summary.