Skip to content

feat: search results - evaluation and results processing #700

feat: search results - evaluation and results processing

feat: search results - evaluation and results processing #700

Workflow file for this run

name: Unit Tests
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
workflow_call:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: install the latest version uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
version: latest
enable-cache: true
prune-cache: false
cache-dependency-glob: "**/pyproject.toml"
- name: Run pytest
run: uv run --all-extras pytest -vvv