Skip to content

Merge pull request #246 from QuantEcon/pin-mpl #147

Merge pull request #246 from QuantEcon/pin-mpl

Merge pull request #246 from QuantEcon/pin-mpl #147

Workflow file for this run

name: Build Cache [using jupyter-book]
on:
push:
branches:
- 'main'
schedule:
# Ensure Cache is built once a month
- cron: '0 0 1 * *'
jobs:
cache:
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.9
environment-file: environment.yml
activate-environment: lecture-datascience
- 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