Skip to content

.buffer: make up_to optional #511

.buffer: make up_to optional

.buffer: make up_to optional #511

Workflow file for this run

name: testing
on:
push:
paths:
- 'streamable/**'
- 'tests/**'
- '.github/workflows/test.yml'
jobs:
testing:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8.18', '3.9.18', '3.10.13', '3.11.7', '3.12.1', '3.13.1', '3.14.0', '3.15.0-alpha.1']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Test
run: |
uv venv
uv pip install -e ".[test]"
uv run pytest -s