From 76f415409ba136eb098d924231d9d901f987a7b4 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Fri, 23 Feb 2024 08:25:35 +0000 Subject: [PATCH] Add GitHub Actions logger Add logger for GitHub Actions to the table of available loggers. --- docs/report.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/report.md b/docs/report.md index 1955dd9e04..7142a1400d 100644 --- a/docs/report.md +++ b/docs/report.md @@ -29,6 +29,7 @@ if you're interested in the architecture of a test logger. | Local, CI, CD | [JunitXml.TestLogger][junit.nuget] | [Junit Logger][] | | AppVeyor | [AppVeyor.TestLogger][appveyor.nuget] | [AppVeyor Logger][] | | Azure Pipelines | [AzurePipelines.TestLogger][azurepipelines.nuget] | [Azure Pipelines Logger][] | +| GitHub Actions | [GitHubActionsTestLogger][githubactions.nuget] | [GitHub Actions Test Logger][] | | TeamCity | [TeamCity.VSTest.TestAdapter][teamcity.nuget] | [Teamcity Logger][] | [Trx Logger]: https://github.com/Microsoft/vstest/tree/main/src/Microsoft.TestPlatform.Extensions.TrxLogger @@ -39,6 +40,7 @@ if you're interested in the architecture of a test logger. [Junit Logger]: https://github.com/spekt/junit.testlogger [AppVeyor Logger]: https://github.com/spekt/appveyor.testlogger [Azure Pipelines Logger]: https://github.com/daveaglick/AzurePipelines.TestLogger +[GitHub Actions Test Logger]: https://github.com/Tyrrrz/GitHubActionsTestLogger [TeamCity Logger]: https://github.com/JetBrains/TeamCity.VSTest.TestAdapter [xunit.nuget]: https://www.nuget.org/packages/XunitXml.TestLogger @@ -46,6 +48,7 @@ if you're interested in the architecture of a test logger. [junit.nuget]: https://www.nuget.org/packages/JUnitXml.TestLogger/ [appveyor.nuget]: https://www.nuget.org/packages/AppVeyor.TestLogger [azurepipelines.nuget]: https://www.nuget.org/packages/AzurePipelines.TestLogger +[githubactions.nuget]: https://www.nuget.org/packages/GitHubActionsTestLogger [teamcity.nuget]: https://www.nuget.org/packages/TeamCity.VSTest.TestAdapter Want to add your logger? Please send a PR with changes in this doc.