File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- os : ["ubuntu-latest", "macos-latest" ]
13
+ os : ["ubuntu-latest"]
14
14
python-version : ["3.8"]
15
15
steps :
16
16
- name : Checkout
46
46
with :
47
47
name : execution-reports
48
48
path : _build/html/reports
49
+
50
+ execution-tests-osx :
51
+ name : Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
52
+ runs-on : ${{ matrix.os }}
53
+ strategy :
54
+ fail-fast : false
55
+ matrix :
56
+ os : ["macos-latest"]
57
+ python-version : ["3.8"]
58
+ steps :
59
+ - name : Checkout
60
+ uses : actions/checkout@v2
61
+ - uses : conda-incubator/setup-miniconda@v2
62
+ with :
63
+ auto-update-conda : true
64
+ python-version : ${{ matrix.python-version }}
65
+ - name : Install latex dependencies
66
+ run : |
67
+ brew install texlive
68
+ - name : Install Anaconda + Dependencies
69
+ shell : bash -l {0}
70
+ run : |
71
+ conda install anaconda
72
+ pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx_tojupyter sphinxcontrib-youtube
73
+ - name : Build Lectures (+ Execution Checks)
74
+ shell : bash -l {0}
75
+ run : jb build lectures --path-output=./ -W --keep-going
76
+ - name : Upload Execution Reports
77
+ uses : actions/upload-artifact@v2
78
+ if : failure()
79
+ with :
80
+ name : execution-reports
81
+ path : _build/html/reports
49
82
# execution-tests-win:
50
83
# name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
51
84
# runs-on: ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments