70fe6869de
Use 11 because apparently Temurin does not have 9 Make action load submodule
17 lines
328 B
YAML
17 lines
328 B
YAML
name: 'Test Report'
|
|
on:
|
|
workflow_run:
|
|
workflows: ['Build with Maven']
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: test-results
|
|
name: Maven Surefire Tests
|
|
path: 'TEST-*.xml'
|
|
reporter: java-junit
|