Skip to content

Tom's June 19 edit of cagan_ree lecture #196

Tom's June 19 edit of cagan_ree lecture

Tom's June 19 edit of cagan_ree lecture #196

Workflow file for this run

name: Build Cache [using jupyter-book]
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Anaconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
miniconda-version: 'latest'
python-version: "3.10"
environment-file: environment.yml
activate-environment: quantecon
# - name: Install latex dependencies
# run: |
# sudo apt-get -qq update
# sudo apt-get install -y \
# texlive-latex-recommended \
# texlive-latex-extra \
# texlive-fonts-recommended \
# texlive-fonts-extra \
# texlive-xetex \
# latexmk \
# xindy \
# dvipng \
# cm-super
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./
- name: Upload "_build" folder (cache)
uses: actions/upload-artifact@v2
with:
name: build-cache
path: _build