Skip to content

Merge pull request #32 from JR-1991/equation-inits #115

Merge pull request #32 from JR-1991/equation-inits

Merge pull request #32 from JR-1991/equation-inits #115

Workflow file for this run

name: Unit Tests
on:
push:
paths:
- 'catalax/**'
- 'tests/**'
- 'pyproject.toml'
- '.github/workflows/tests.yml'
pull_request:
paths:
- 'catalax/**'
- 'tests/**'
- 'pyproject.toml'
- '.github/workflows/tests.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync --dev
- name: Test with pytest
run: uv run pytest -vv -m "not expensive"