Skip to content

Support FTS and bulk loading indices #36

Support FTS and bulk loading indices

Support FTS and bulk loading indices #36

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
tests:
name: pytest (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.13"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run pytest
env:
PYTHONPATH: src
run: pytest -m "not postgres"