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 pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "aeon_neuro/**"
- ".github/workflows/**"
- "pyproject.toml"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04, macOS-12, windows-2022 ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install aeon and dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .[all_extras,dev]
- name: Show dependencies
run: python -m pip list
- name: Run tests
run: python -m pytest
codecov:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Disable Numba JIT
run: echo "NUMBA_DISABLE_JIT=1" >> $GITHUB_ENV
- name: Install aeon and dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .[all_extras,dev]
- name: Show dependencies
run: python -m pip list
- name: Run tests
run: python -m pytest --cov=aeon_neuro --cov-report=xml
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}