Skip to content

Updated CI versions #259

Updated CI versions

Updated CI versions #259

Workflow file for this run

---
name: Python Tests
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@4e339f4c209f54b534c1b7207e03126c0cb9ac3f # v3
- name: Install dependencies
run: |
uv venv
uv pip install -e ".[dev]"
- name: Test with pytest
run: |
uv run python -m pytest -vv