1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/.github/workflows/report-nunit.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.3 KiB
YAML
Raw Normal View History

2021-06-15 20:59:18 +08:00
# This is a workaround to allow PRs to report their coverage. This will run inside the base repository.
# See:
# * https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories
# * https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token
name: Annotate CI run with test results
on:
workflow_run:
workflows: ["Continuous Integration"]
types:
- completed
permissions: {}
2021-06-15 20:59:18 +08:00
jobs:
annotate:
permissions:
checks: write # to create checks (dorny/test-reporter)
2021-06-15 20:59:18 +08:00
name: Annotate CI run with test results
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'cancelled' }}
strategy:
fail-fast: false
matrix:
os:
- { prettyname: Windows }
- { prettyname: macOS }
- { prettyname: Linux }
threadingMode: ['SingleThread', 'MultiThreaded']
timeout-minutes: 5
2021-06-15 20:59:18 +08:00
steps:
- name: Annotate CI run with test results
uses: dorny/test-reporter@v1.6.0
2021-06-15 20:59:18 +08:00
with:
artifact: osu-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}
name: Test Results (${{matrix.os.prettyname}}, ${{matrix.threadingMode}})
path: "*.trx"
reporter: dotnet-trx
2021-10-14 23:25:59 +08:00
list-suites: 'failed'
list-tests: 'failed'