27 lines
475 B
YAML
27 lines
475 B
YAML
on:
|
|
workflow_run:
|
|
workflows:
|
|
- "Analyze and test"
|
|
types:
|
|
- completed
|
|
|
|
name: Test Reports
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
|
|
jobs:
|
|
reports:
|
|
name: Upload test reports
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: /test-reports-(.*)/
|
|
name: Flutter Tests - $1
|
|
path: "*.json"
|
|
reporter: flutter-json
|
|
only-summary: "true"
|