forked from mozilla/sphinx-js
-
Notifications
You must be signed in to change notification settings - Fork 5
51 lines (48 loc) · 1.34 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: "Test Report"
on:
workflow_run:
workflows: ["CI"]
types:
- completed
jobs:
report:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
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.12"]
typedoc-version: ["0.25"]
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
report-sphinx:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
sphinx-version: ["6"]
runs-on: ubuntu-latest
steps:
- uses: dorny/[email protected]
with:
artifact: test_sphinx_6-${{ matrix.python-version }}
name: Test report - Sphinx 6
path: test-results.xml
reporter: java-junit