Skip to content

Tog radius outlier bug #299

Tog radius outlier bug

Tog radius outlier bug #299

Workflow file for this run

name: tests
on:
push:
branches:
- master
tags-ignore:
- "**" # Exclude tag pushes
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.12", "3.13" ] # Define Python versions as strings
pandas-version: [ "2", "3" ]
env:
UV_PYTHON: ${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Install pandas ${{ matrix.pandas-version }}
run: |
if [ "${{ matrix.pandas-version }}" = "2" ]; then
uv pip install "pandas>=2,<3"
else
uv pip install "pandas>=3,<4"
fi
- name: Run tests
run: uv run pytest tests