Skip to content

Execution Tests [Latest Anaconda, Windows] #208

Execution Tests [Latest Anaconda, Windows]

Execution Tests [Latest Anaconda, Windows] #208

Workflow file for this run

name: Execution Tests [Latest Anaconda, Windows]
on:
schedule:
# UTC 17:00 is early morning in Australia
- cron: '0 15 * * 4'
jobs:
execution-tests-win:
name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["windows-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: powershell
# numba and llvmlite have issues on latest anaconda install for windows
# https://github.com/numba/llvmlite/issues/650#issuecomment-865287766
run: |
conda install anaconda
conda install -c numba numba
conda install -c numba llvmlite
pip install jupyter-book
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: powershell
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