-
Notifications
You must be signed in to change notification settings - Fork 2
29 lines (28 loc) · 964 Bytes
/
reports.yaml
File metadata and controls
29 lines (28 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Publish reports
on:
workflow_call:
inputs:
josm-revision:
type: string
default: ''
description: The JOSM revision to use. May be empty (''), 'latest', 'tested', or 'rNUMBER' ('r10000')
required: false
java-version:
type: number
default: 11
description: The java version to build against
required: false
jobs:
checks:
if: ${{ !github.ref_protected }}
runs-on: ubuntu-latest
steps:
- name: Download Test Report
uses: actions/download-artifact@v8
with:
name: Ant reports for JOSM plugin ${{ github.event.repository.name }}-${{ inputs.java-version }}-${{ inputs.josm-revision }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
with:
commit: ${{ github.event.workflow_run.head_sha }}
report_paths: 'josm/plugins/${{ github.event.repository.name }}/**/test/report/TEST*.xml'