Skip to content

Build(deps): Update pyarrow requirement from >=17.0 to >=24.0.0 (#5) #22

Build(deps): Update pyarrow requirement from >=17.0 to >=24.0.0 (#5)

Build(deps): Update pyarrow requirement from >=17.0 to >=24.0.0 (#5) #22

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --extra dev --extra pdf
- name: Lint (ruff)
run: |
uv run ruff check .
uv run ruff format --check .
- name: Test (pytest)
run: uv run pytest -q