Skip to content

fix: Insert documents in batches for Azure AI Search vector store #2

fix: Insert documents in batches for Azure AI Search vector store

fix: Insert documents in batches for Azure AI Search vector store #2

Workflow file for this run

name: Build and test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: 'test'
python: '3.11'
os: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.6.3"
- name: Setup Python
run: uv python install ${{ matrix.python }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Unit tests
run: uv run pytest tests