Skip to content

refactor(help): shim manifest/staleness/freshness; add rag adapter #15

refactor(help): shim manifest/staleness/freshness; add rag adapter

refactor(help): shim manifest/staleness/freshness; add rag adapter #15

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: test (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install with dev extra
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run ruff
run: python -m ruff check src/ tests/
- name: Run tests
run: python -m pytest tests/ -v --tb=short