Skip to content

Fix #24

Fix #24 #98

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: ['**']
pull_request:
branches: [master]
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.11'
sync-args: --resolution=lowest
- python-version: '3.14'
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Set up python
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
with:
python-version: ${{ matrix.python-version }}
prune-cache: false
- name: Install dependencies
run: uv sync --group test ${{ matrix.sync-args }}
- name: Test with pytest
run: uv run --no-sync pytest