Skip to content

[MNT] Bump the python-packages group with 3 updates #261

[MNT] Bump the python-packages group with 3 updates

[MNT] Bump the python-packages group with 3 updates #261

Workflow file for this run

name: PR Examples
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "examples/**"
- "aeon_neuro/**"
- ".github/workflows/**"
- "pyproject.toml"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
run-notebook-examples:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install aeon and dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .[all_extras,binder,dev]
- name: Run example notebooks
run: .github/utilities/run_examples.sh
shell: bash