Skip to content

docs: expand pagination and retry behavior docs (v1.0.4) #41

docs: expand pagination and retry behavior docs (v1.0.4)

docs: expand pagination and retry behavior docs (v1.0.4) #41

Workflow file for this run

---
name: Checks
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test-lint:
name: Test and Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups
- name: Lint (ruff)
run: uv run ruff check .
- name: Unit tests
run: uv run pytest tests/ --ignore=tests/test_integration.py -v