@@ -19,14 +19,20 @@ jobs:
19
19
with :
20
20
auto-update-conda : true
21
21
python-version : ${{ matrix.python-version }}
22
- - name : Install Anaconda + Dependencies [Linux,OS X]
22
+ - name : Install Anaconda + Dependencies
23
23
shell : bash -l {0}
24
24
run : |
25
25
conda install anaconda
26
26
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx_tojupyter
27
- - name : Build Lectures (+ Execution Checks) [Linux, OS X]
27
+ - name : Build Lectures (+ Execution Checks)
28
28
shell : bash -l {0}
29
29
run : jb build lectures --path-output=./ -W --keep-going
30
+ - name : Upload Execution Reports
31
+ uses : actions/upload-artifact@v2
32
+ if : failure()
33
+ with :
34
+ name : execution-reports
35
+ path : _build/html/reports
30
36
execution-tests-win :
31
37
name : Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
32
38
runs-on : ${{ matrix.os }}
@@ -42,12 +48,18 @@ jobs:
42
48
with :
43
49
auto-update-conda : true
44
50
python-version : ${{ matrix.python-version }}
45
- - name : Install Anaconda + Dependencies [Windows]
51
+ - name : Install Anaconda + Dependencies
46
52
shell : powershell
47
53
run : |
48
54
conda install anaconda
49
55
pip install jupyter-book
50
56
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx_tojupyter
51
- - name : Build Lectures (+ Execution Checks) [Windows]
57
+ - name : Build Lectures (+ Execution Checks)
52
58
shell : powershell
53
- run : jb build lectures --path-output=./ -W --keep-going
59
+ run : jb build lectures --path-output=./ -W --keep-going
60
+ - name : Upload Execution Reports
61
+ uses : actions/upload-artifact@v2
62
+ if : failure()
63
+ with :
64
+ name : execution-reports
65
+ path : _build/html/reports
0 commit comments