Skip to content

chore(deps): bump actions/checkout from 6 to 7 in the github-actions group #13

chore(deps): bump actions/checkout from 6 to 7 in the github-actions group

chore(deps): bump actions/checkout from 6 to 7 in the github-actions group #13

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev,qdrant,fastapi,postgres,postgres-async]"
- name: Run tests
run: python -m pytest