Bumps [dorny/test-reporter](https://github.com/dorny/test-reporter) from 1.6.0 to 1.7.0.
- [Release notes](https://github.com/dorny/test-reporter/releases)
- [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md)
- [Commits](c9b3d0e2bd...afe6793191)
---
updated-dependencies:
- dependency-name: dorny/test-reporter
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
28 lines
785 B
YAML
28 lines
785 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
|
|
name: Report test results
|
|
|
|
# HACK: the "on-push-pr" workflow gets run with read-only perms.
|
|
# This workflow will run in our repo with write permissions after
|
|
# the PR checks are done running.
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- On push to master branch
|
|
- On push to a secondary branch
|
|
- On push to a PR
|
|
types: [completed]
|
|
|
|
jobs:
|
|
report-test-results:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Report test results
|
|
uses: dorny/test-reporter@afe6793191b75b608954023a46831a3fe10048d4 # v1.7.0
|
|
with:
|
|
name: Test results
|
|
artifact: test-results
|
|
path: test-results.trx
|
|
fail-on-error: false
|
|
reporter: dotnet-trx
|