Skip to content

Dependency updates (#302) #462

Dependency updates (#302)

Dependency updates (#302) #462

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- main
paths-ignore:
- docs/**
push:
branches:
- main
paths-ignore:
- docs/**
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
permissions: {}
jobs:
pytest:
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7.0.1
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v9.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install project
run: uv sync --locked --no-dev --all-extras --group tests --managed-python
- name: Run tests
run: uv run --no-dev pytest
check:
if: always()
needs:
- pytest
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@v1.2.2
with:
jobs: ${{ toJSON(needs) }}