forked from ppy/osu-localisation-analyser
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 996 Bytes
/
report-xunit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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: "Test Report"
on:
workflow_run:
workflows: ["Continuous Integration"]
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'cancelled' }}
strategy:
fail-fast: false
matrix:
os:
- { prettyname: Windows }
- { prettyname: macOS }
- { prettyname: Linux }
steps:
- name: Continuous Integration Test Report
uses: dorny/[email protected]
with:
artifact: test-results-${{matrix.os.prettyname}}
name: Test Results (${{matrix.os.prettyname}})
path: "*.trx"
reporter: dotnet-trx