Option to report only summary and not every individual result for parallel runs
ranocha opened this issue · 2 comments
We're using GitHub actions to test our Julia project using parallel runs. We use a setup following the parallel jobs example. Thus, we get many coverage reports of every individual run, for example in this PR. This is quite annoying, since a commit adding something that is only tested in one of these parallel jobs increases the total amount of code and thus the code coverage of all other individual runs. Moreover, this additional clutter of information even prevented the use of Coveralls in another project.
It would be great if there was an option to show only the summary of all runs for parallel jobs.
Does this GitHub Action help?
It's description says that it's a
GitHub Action that enables conditional execution of workflow steps and jobs, based on the files modified by pull request, on a feature branch, or by the recently pushed commits.
That's not what we want. We want to run multiple parallel CI jobs covering different parts of the code and get only the summary of all coverage reports, not the individual ones.