Notebooks #615
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: Notebooks | |
on: | |
schedule: | |
# 4am on monday (minute, hour, day, month, day-of-the-week) | |
- cron: '0 4 * * 1' | |
jobs: | |
build-and-test: | |
name: Notebooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: install pints | |
run: | | |
python --version | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install . | |
python -m pip install .[dev] | |
# Install pandas for "estimation renewal" notebook | |
- name: install pandas | |
run: | | |
python -m pip install pandas | |
- name: run jupyter notebooks | |
run: | | |
python run-tests.py --books |