added the rest of the actions
This commit is contained in:
29
.gdunit4_action/publish-test-report/action.yml
Normal file
29
.gdunit4_action/publish-test-report/action.yml
Normal 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'
|
||||
Reference in New Issue
Block a user