Skip to content

Tests Report

Tests Report #90

Workflow file for this run

name: "Tests Report"
on:
workflow_run:
workflows: ["Checkout"]
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
name: "🚛 Tests report"
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Test report
uses: dorny/test-reporter@v1
with:
artifact: test-results
name: Test Report
path: "**/tests.json"
reporter: flutter-json
fail-on-error: false