Skip to content

get working batched version #27

get working batched version

get working batched version #27

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
branches:
- "*"
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: pytest (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
with:
version: "0.11.18"
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install project
run: uv sync --locked
- name: Run tests
run: uv run pytest