From 2077cfca36aaaad73fd85c3f84970a436607a0f4 Mon Sep 17 00:00:00 2001 From: Michal Dorner Date: Mon, 1 Feb 2021 21:39:58 +0100 Subject: [PATCH] Update README.md --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c8c07f..ece334b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ # Test Reporter This [Github Action](https://github.com/features/actions) displays test results from popular testing frameworks directly in GitHub. -- [x] Parses test results in XML or JSON format and creates nice report (Github Check Run) -- [x] Annotates code where it failed based on message and stack trace captured during test execution -- [x] Sets output variable conclusion to `success` if all tests passed or `failure` if any test failed + +✔️ Parses test results in XML or JSON format and creates nice report as Github Check Run + +✔️ Annotates code where it failed based on message and stack trace captured during test execution + +✔️ Provides final `conclusion` and counts of `passed`, `failed` and `skipped` tests as output parameters + **How it looks:** |![](assets/fluent-validation-report.png)|![](assets/provider-error-summary.png)|![](assets/provider-error-details.png)|![](assets/provider-groups.png)| @@ -91,6 +95,15 @@ jobs: token: '' ``` +## Output parameters +| Name | Description | +| :-- | :-- | +| conclusion | `success` or `failure` | +| passed | Count of passed tests | +| failed | Count of failed tests | +| skipped | Count of skipped tests | +| time | Execution time [ms] | + ## Supported formats