GitHubActionsTestLogger 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GitHubActionsTestLogger --version 1.3.0
NuGet\Install-Package GitHubActionsTestLogger -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GitHubActionsTestLogger" Version="1.3.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GitHubActionsTestLogger --version 1.3.0
#r "nuget: GitHubActionsTestLogger, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GitHubActionsTestLogger as a Cake Addin
#addin nuget:?package=GitHubActionsTestLogger&version=1.3.0

// Install GitHubActionsTestLogger as a Cake Tool
#tool nuget:?package=GitHubActionsTestLogger&version=1.3.0

GitHub Actions Test Logger

Build Coverage Version Downloads Discord Donate

Project status: active. What does it mean?

Custom logger for dotnet test that reports test results in a structured format that GitHub Actions understands. When using this logger, failed tests are listed in workflow annotations and highlighted in code diffs.

💬 If you want to chat, join my Discord server.

Download

📦 NuGet: dotnet add package GitHubActionsTestLogger

Screenshots

diff

Usage

Installation

To use GitHub Actions Test Logger, follow these steps:

  1. Install GitHubActionsTestLogger package in your test project
  2. Install Microsoft.NET.Test.Sdk package in your test project (or update to latest)
  3. Modify your GitHub Actions workflow file by adding --logger GitHubActions to dotnet test:
name: CI
on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v2.3.3

      - name: Install .NET
        uses: actions/setup-dotnet@v1.7.2
        with:
          dotnet-version: 5.0.x

      - name: Build & test
        run: dotnet test --configuration Release --logger GitHubActions

⚠️ Ensure that your test project references Microsoft.NET.Test.Sdk version 16.8.0 or higher. Older versions of this package may not work properly with custom test loggers.

⚠️ If you are using .NET SDK v2.2 or lower, you need to enable <CopyLocalLockFileAssemblies> property in your test project.

Options

GitHub Actions Test Logger has a few options that you can override to customize its behavior. In order to pass an option to the logger, include it as an additional parameter inside --logger:

dotnet test --logger "GitHubActions;option1=foo;option2=bar"
format

Specifies the format used when logging test results to the console.

The following replacement tokens are available:

  • $test -- replaced with the display name of the test
  • $outcome -- replaced with the error message (in case of an exception) or the outcome of the test
  • $traits.TRAIT_NAME -- replaced with the value of a trait named TRAIT_NAME

Default: $test: $outcome.

Examples:

  • $test: $outcomeMyTests.Test1: AssertionException: Expected 'true' but found 'false'
  • [$traits.Category] $test: $outcome[UI Tests] MyTests.Test1: AssertionException: Expected 'true' but found 'false'
report-warnings

Specifies whether to additionally report warnings for tests that have neither failed nor succeeded (i.e. skipped or inconclusive). If disabled, only failed tests will be reported.

Can be set to either true or false.

Default: true.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (85)

Showing the top 5 popular GitHub repositories that depend on GitHubActionsTestLogger:

Repository Stars
DapperLib/Dapper
Dapper - a simple object mapper for .Net
MaterialDesignInXAML/MaterialDesignInXamlToolkit
Google's Material Design in XAML & WPF, for C# & VB.Net.
App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
PrismLibrary/Prism
Prism is a framework for building loosely coupled, maintainable, and testable XAML applications in WPF, Xamarin Forms, and Uno / Win UI Applications..
Version Downloads Last updated
2.3.3 644,189 8/24/2023
2.3.2 264,808 6/1/2023
2.3.1 4,736 5/31/2023
2.3.0 45,006 5/25/2023
2.2.1 19,943 5/18/2023
2.2.0 1,372 5/18/2023
2.1.0 12,422 5/9/2023
2.0.2 24,226 4/27/2023
1.3.0 136,149 2/21/2022
1.2.0 1,049,168 2/22/2021
1.1.2 123,098 10/26/2020
1.1.1 19,260 10/1/2020
1.1.0 151,135 4/27/2020
1.0.0 8,621 3/23/2020
0.0.1 2,770 3/22/2020