Skip to content

Test Report · CI #147 (call_all_init_attr) · Not all init_attr routines are called at init. #2165 #110

Test Report · CI #147 (call_all_init_attr) · Not all init_attr routines are called at init. #2165

Test Report · CI #147 (call_all_init_attr) · Not all init_attr routines are called at init. #2165 #110

Workflow file for this run

name: Test Report
# Tie each run's title back to the CI run that triggered it, so the Actions list
# shows e.g. "Test Report · CI #98 (branch) · <commit/PR title>" instead of a
# context-free "Test Report #63".
run-name: >-
Test Report · CI #${{ github.event.workflow_run.run_number }}
(${{ github.event.workflow_run.head_branch }}) ·
${{ github.event.workflow_run.display_title }}
on:
workflow_run:
workflows: [CI]
types: [completed]
permissions:
contents: read
actions: read
checks: write
jobs:
report:
name: Publish Test Results
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'skipped' }}
steps:
- name: Publish Test Report
uses: dorny/test-reporter@v3
with:
# Matches all "Test - *" artifacts uploaded by the CI workflow.
artifact: /Test - (.*)/
name: $1
path: "*.xml"
reporter: java-junit
fail-on-error: false
fail-on-empty: false
max-annotations: 50
use-actions-summary: false