From a6dcebc29a97b9a0e20ff78c138f3afc88ae7b0c Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Thu, 16 Jun 2022 14:43:07 -0500 Subject: Add new workflow to upload a test report from the build workflow's results. --- .github/workflows/test-report.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-report.yml (limited to '.github') diff --git a/.github/workflows/test-report.yml b/.github/workflows/test-report.yml new file mode 100644 index 00000000..62ebbfe2 --- /dev/null +++ b/.github/workflows/test-report.yml @@ -0,0 +1,22 @@ +name: Build WiX Toolset v4 Test Report + +on: + workflow_run: + workflows: [ 'Build WiX Toolset v4' ] + types: [ completed ] + branches-ignore: + - master +permissions: + actions: read + checks: write +jobs: + report: + runs-on: ubuntu-latest + steps: + - name: Generate Test Reports + uses: dorny/test-reporter@v1 + with: + artifact: logs_${{ github.event.workflow_run.id }} + name: Xunit Tests + path: 'TestResults/*.trx' + reporter: dotnet-trx \ No newline at end of file -- cgit v1.2.3-55-g6feb