Skip to content

feat: implement pdf url processor (#39) #114

feat: implement pdf url processor (#39)

feat: implement pdf url processor (#39) #114

Workflow file for this run

name: Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups
- name: Run tests (excluding integration tests)
run: uv run pytest -m "not integration"
- name: Minimize uv cache
run: uv cache prune --ci