File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 38
38
run : make -j4
39
39
- name : ' Install build dependencies'
40
40
run : make -C Doc/ PYTHON=../python venv
41
- - name : ' Build documentation'
42
- run : xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html
41
+ # Run "check doctest html" as 3 steps to get a more readable output
42
+ # in the web UI
43
+ - name : ' Check documentation'
44
+ run : make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" check
45
+ # Use "xvfb-run" since some doctest tests open GUI windows
46
+ - name : ' Run documentation doctest'
47
+ run : xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest
48
+ - name : ' Build HTML documentation'
49
+ run : make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" html
43
50
- name : ' Upload'
44
51
45
52
with :
You can’t perform that action at this time.
0 commit comments