-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
451 changed files
with
12,618 additions
and
2,087 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ on: | |
paths: | ||
- api/** | ||
- docker/** | ||
- .github/workflows/api-tests.yml | ||
|
||
concurrency: | ||
group: api-tests-${{ github.head_ref || github.run_id }} | ||
|
@@ -27,16 +28,15 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Poetry | ||
uses: abatilo/actions-poetry@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache-dependency-path: | | ||
api/pyproject.toml | ||
api/poetry.lock | ||
- name: Install Poetry | ||
uses: abatilo/actions-poetry@v3 | ||
cache: poetry | ||
cache-dependency-path: api/poetry.lock | ||
|
||
- name: Check Poetry lockfile | ||
run: | | ||
|
@@ -67,7 +67,7 @@ jobs: | |
run: sh .github/workflows/expose_service_ports.sh | ||
|
||
- name: Set up Sandbox | ||
uses: hoverkraft-tech/[email protected].0 | ||
uses: hoverkraft-tech/[email protected].2 | ||
with: | ||
compose-file: | | ||
docker/docker-compose.middleware.yaml | ||
|
@@ -77,22 +77,3 @@ jobs: | |
- name: Run Workflow | ||
run: poetry run -C api bash dev/pytest/pytest_workflow.sh | ||
|
||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma, MyScale, ElasticSearch, Couchbase) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
docker/docker-compose.yaml | ||
services: | | ||
weaviate | ||
qdrant | ||
couchbase-server | ||
etcd | ||
minio | ||
milvus-standalone | ||
pgvecto-rs | ||
pgvector | ||
chroma | ||
elasticsearch | ||
- name: Test Vector Stores | ||
run: poetry run -C api bash dev/pytest/pytest_vdb.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
cp middleware.env.example middleware.env | ||
- name: Set up Middlewares | ||
uses: hoverkraft-tech/[email protected].0 | ||
uses: hoverkraft-tech/[email protected].2 | ||
with: | ||
compose-file: | | ||
docker/docker-compose.middleware.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Run VDB Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- api/core/rag/datasource/** | ||
- docker/** | ||
- .github/workflows/vdb-tests.yml | ||
|
||
concurrency: | ||
group: vdb-tests-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: VDB Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Poetry | ||
uses: abatilo/actions-poetry@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
cache-dependency-path: api/poetry.lock | ||
|
||
- name: Check Poetry lockfile | ||
run: | | ||
poetry check -C api --lock | ||
poetry show -C api | ||
- name: Install dependencies | ||
run: poetry install -C api --with dev | ||
|
||
- name: Set up dotenvs | ||
run: | | ||
cp docker/.env.example docker/.env | ||
cp docker/middleware.env.example docker/middleware.env | ||
- name: Expose Service Ports | ||
run: sh .github/workflows/expose_service_ports.sh | ||
|
||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma, MyScale, ElasticSearch, Couchbase) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
docker/docker-compose.yaml | ||
services: | | ||
weaviate | ||
qdrant | ||
couchbase-server | ||
etcd | ||
minio | ||
milvus-standalone | ||
pgvecto-rs | ||
pgvector | ||
chroma | ||
elasticsearch | ||
- name: Test Vector Stores | ||
run: poetry run -C api bash dev/pytest/pytest_vdb.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.