Execution Tests [Latest Anaconda, Linux] #915
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Execution Tests [Latest Anaconda, Linux] | |
on: | |
schedule: | |
# UTC 15:00 is early morning in Australia | |
- cron: '0 15 * * *' | |
jobs: | |
execution-tests-linux: | |
name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install Anaconda + Dependencies | |
shell: bash -l {0} | |
run: | | |
conda install anaconda | |
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton | |
- name: Install Jax [CPU] | |
shell: bash -l {0} | |
run: | | |
pip install "jax[CPU]" | |
- name: Build Lectures (+ Execution Checks) | |
shell: bash -l {0} | |
run: jb build lectures --path-output=./ -W --keep-going | |
- name: Upload Execution Reports | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: execution-reports | |
path: _build/html/reports |