Skip to content

[MNT] Bump tj-actions/changed-files from 44.4.0 to 44.5.2 in the github-actions group across 1 directory #64

[MNT] Bump tj-actions/changed-files from 44.4.0 to 44.5.2 in the github-actions group across 1 directory

[MNT] Bump tj-actions/changed-files from 44.4.0 to 44.5.2 in the github-actions group across 1 directory #64

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-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- 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: build_tools/run_examples.sh
shell: bash