Skip to content

Commit

Permalink
chore: add github action test
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed May 2, 2023
1 parent 3fbe294 commit ec06780
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ec06780

Please sign in to comment.