forked from mozilla/sphinx-js
-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (34 loc) · 970 Bytes
/
test_report.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
32
33
34
35
36
37
name: 'Test Report'
on:
workflow_run:
workflows: ['CI']
types:
- completed
jobs:
report:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: dorny/[email protected]
with:
artifact: test-results-${{ matrix.python-version }}
name: Test report - ${{ matrix.python-version }}
path: test-results.xml
reporter: java-junit
report-typedoc:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
typedoc-version: ['0.20', '0.21']
runs-on: ubuntu-latest
steps:
- uses: dorny/[email protected]
with:
artifact: test_typedoc-results-${{ matrix.python-version }}-${{ matrix.typedoc-version }}
name: Test report - Python ${{ matrix.python-version}} + typedoc ${{ matrix.typedoc-version }}
path: test-results.xml
reporter: java-junit