On CI tools like Circle CI, it is possible for your individual jobs of one test run to report as separate checks to Github. The following is the result of one test run, that runs different jobs on Ubuntu and macOS images:
I can also create a pipeline on Azure Pipelines that achieves a similar result, running on multiple vmImage
s and different configurations via matrix
. But this results in only one "check" on Github:
Although Azure Pipelines itself runs 6 different jobs in this case:
Is there a way to configure Azure Pipelines to report individual jobs of the pipeline as individual GitHub checks, similar to Circle CI?