Skip to content

Notebooks

Notebooks #16

Workflow file for this run

name: Notebooks
on:
schedule:
# 4am on wednesday (minute, hour, day, month, day-of-the-week)
- cron: '0 4 * * 3'
jobs:
build-and-test:
name: Notebooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
- name: install system dependencies
run: |
sudo ./.github/workflows/install-ubuntu-dependencies.sh
- name: install python dependencies
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
- name: test notebooks
run: |
python test.py