mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-29 10:00:07 -05:00
Bumps the github-actions group with 1 update: [dorny/test-reporter](https://github.com/dorny/test-reporter). Updates `dorny/test-reporter` from 1.8.0 to 1.9.0 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](https://github.com/dorny/test-reporter/compare/v1.8.0...v1.9.0) --- updated-dependencies: - dependency-name: dorny/test-reporter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
400 B
YAML
17 lines
400 B
YAML
name: Test Report
|
|
on:
|
|
workflow_run:
|
|
workflows: ['\[CI\] Test']
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest-8core
|
|
steps:
|
|
- uses: dorny/test-reporter@v1.9.0
|
|
with:
|
|
artifact: test_results
|
|
name: Test reports
|
|
path: "*.xml"
|
|
reporter: java-junit
|