Skip to content

chore: add github action test #1

chore: add github action test

chore: add github action test #1

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