added the rest of the actions

This commit is contained in:
2026-03-08 10:02:30 +01:00
parent 863e470328
commit c1c5681cb5
9 changed files with 621 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
name: publish-test-report
description: 'Publishes the GdUnit test results'
inputs:
report-name:
description: 'Name of the check run which will be created.'
required: true
project_dir:
description: 'The working directory to collect the results.'
required: true
default: './'
reporter:
description: 'The report format to build the report'
required: false
default: 'java-junit'
runs:
using: composite
steps:
- name: 'Publish Test Results'
uses: dorny/test-reporter@v2
with:
name: ${{ inputs.report-name }}
path: '${{ inputs.project_dir }}reports/**/*.xml'
reporter: ${{ inputs.reporter }}
fail-on-error: 'false'
fail-on-empty: 'false'
use-actions-summary: 'false'