From bf5ea500340d4b1dbdfcd99d48278eb3a2b202e7 Mon Sep 17 00:00:00 2001 From: nselvara Date: Fri, 2 Jan 2026 01:43:42 +0100 Subject: [PATCH] Add `Test Reporter` GitHub Action Plugin Fixes #27 --- .github/workflows/vunit.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vunit.yml b/.github/workflows/vunit.yml index 98e5a4e..edbe112 100644 --- a/.github/workflows/vunit.yml +++ b/.github/workflows/vunit.yml @@ -55,7 +55,14 @@ jobs: env: VUNIT_CI_MODE: "true" timeout-minutes: 15 # Test execution timeout - + - name: Test Report + uses: dorny/test-reporter@c8370352934b730bc7f9acc17180a1f5f3964ffd # v2 + if: ${{ !cancelled() }} + with: + name: VUnit Test Results + path: test-reports/vunit_results.xml + reporter: java-junit + fail-on-error: false - name: Generate XUnit Viewer Report uses: AutoModality/action-xunit-viewer@7cb0d0fc8cc104017ac5ebd7d9082213a311d4a2 # v1 if: always()