diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e58d4cf --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,31 @@ +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