Skip to content

Binder try #1

Binder try #1 #1

Workflow file for this run

name: PR Examples
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
paths:
- "tutorials/**"
- "aeon/**"
- ".github/workflows/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
run-notebook-tutorials:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install aeon and dependencies
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
max_attempts: 3
run: |
python -m pip install --upgrade pip
pip install notebook
pip install jupyterlab
- name: Run example notebooks
run: build_tools/run_tutorials.sh
shell: bash