Skip to content

DOCS: Update documentation #55

DOCS: Update documentation

DOCS: Update documentation #55

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# Will only trigger if there is a change within pybaselines or tests directories.
name: tests
on:
# allow manually activating the workflow
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'pybaselines/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
# always trigger on a pull request, regardless of the branch
paths:
- 'pybaselines/**'
- 'tests/**'
- '.github/workflows/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Use strings since yaml considers 3.10 equal to 3.1
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.13t']
steps:
- uses: actions/checkout@v4
- name: Set up Python
# Switch back to actions/setup-python@v5 once they support free-threaded python;
# see revelant PR: https://github.com/actions/setup-python/pull/973
uses: Quansight-Labs/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install required dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . pytest
- name: Test with required dependencies
run: pytest .
- name: Install optional dependencies
id: install-optional
# uncomment below to allow skipping future versions
if: matrix.python-version != '3.13t'
run: python -m pip install .[full]
- name: Test with optional dependencies
if: steps.install-optional.outcome == 'success'
run: pytest .
test-min-dependencies:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install minimum dependencies
# set installed versions using "==major.minor.*"" to allow bug fixes on patch versions
# for minimum supported versions
run: |
python -m pip install --upgrade pip
python -m pip install "numpy==1.20.*" "scipy==1.6.*" pytest
- name: Test with minimum required dependencies
run: pytest .
- name: Install minimum optional dependencies
run: python -m pip install "pentapy==1.1.*" "numba==0.53.*"
- name: Test with minimum optional dependencies
run: pytest .
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install linting dependencies
run: python -m pip install ruff
- name: Lint
run: ruff check .