Skip to content

Merge pull request #1 from different-ai/feat/qdrant-implementation #4

Merge pull request #1 from different-ai/feat/qdrant-implementation

Merge pull request #1 from different-ai/feat/qdrant-implementation #4

Workflow file for this run

name: Embedbase Qdrant CI
on:
pull_request:
push:
branches:
- main
- next
- rc
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest test_integration.py