Skip to content

[pre-commit.ci] pre-commit autoupdate #77

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #77

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.13"
name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Only needed if using setuptools-scm
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Download uv
uses: astral-sh/setup-uv@v6
- name: install dependenies
run: uv pip install --system .[test]
- name: Test package
run: pytest