7 Commits

Author SHA1 Message Date
renovate f2ca2c0b3d chore(deps): update dependency mcp to v1.28.1
Docker Build and Push / integration-test (pull_request) Successful in 32s
Docker Build and Push / test (pull_request) Successful in 44s
Docker Build and Push / build (pull_request) Successful in 1m15s
2026-06-26 13:02:03 +00:00
jcabillot b997383f81 Merge pull request 'chore(deps): update actions/setup-python digest to ece7cb0' (#21) from renovate/actions-setup-python-digest into main
Docker Build and Push / integration-test (push) Successful in 27s
Docker Build and Push / test (push) Successful in 1m52s
Docker Build and Push / build (push) Successful in 2m19s
Reviewed-on: #21
2026-06-24 08:55:32 -04:00
renovate 58de02858d chore(deps): update actions/setup-python digest to ece7cb0
Docker Build and Push / integration-test (pull_request) Successful in 40s
Docker Build and Push / test (pull_request) Successful in 44s
Docker Build and Push / build (pull_request) Successful in 1m21s
2026-06-24 04:07:27 +00:00
opencodecabilloteu f285cf755c Merge pull request 'test: tea pr creation demo' (#20) from test/tea-pr-creation into main
Docker Build and Push / integration-test (push) Failing after 14m17s
Docker Build and Push / test (push) Failing after 14m17s
Docker Build and Push / build (push) Has been skipped
2026-06-22 12:13:15 -04:00
opencodecabilloteu edbf2e46ff test: tea pr creation demo
Docker Build and Push / test (pull_request) Successful in 20s
Docker Build and Push / integration-test (pull_request) Successful in 25s
Docker Build and Push / build (pull_request) Successful in 1m24s
2026-06-22 16:12:05 +00:00
jcabillot 5158b0b093 Merge pull request 'fix: cleanup Qdrant container before and after integration tests' (#19) from fix/qdrant-cleanup into main
Docker Build and Push / test (push) Successful in 15s
Docker Build and Push / integration-test (push) Successful in 29s
Docker Build and Push / build (push) Successful in 2m19s
Reviewed-on: #19
2026-06-22 12:04:46 -04:00
opencodecabilloteu c8e4d68238 fix: cleanup Qdrant container before and after integration tests
Docker Build and Push / test (pull_request) Successful in 20s
Docker Build and Push / integration-test (pull_request) Successful in 26s
Docker Build and Push / build (pull_request) Successful in 1m29s
2026-06-22 11:53:58 -04:00
3 changed files with 9 additions and 3 deletions
+7 -2
View File
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.14"
- name: Install dependencies
@@ -29,6 +29,7 @@ jobs:
- name: Start Qdrant
run: |
docker rm -f qdrant 2>/dev/null || true
docker run -d --name qdrant \
--network "container:$(hostname)" \
docker.io/qdrant/qdrant:latest
@@ -41,7 +42,7 @@ jobs:
sleep 1
done
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.14"
- name: Install dependencies
@@ -53,6 +54,10 @@ jobs:
QDRANT_URL: http://localhost:6333
COLLECTION_NAME: test_mcp_maildir
- name: Cleanup Qdrant
if: always()
run: docker rm -f qdrant 2>/dev/null || true
build:
runs-on: ubuntu-latest
needs: [test, integration-test]
+1
View File
@@ -0,0 +1 @@
test
+1 -1
View File
@@ -1,4 +1,4 @@
mcp==1.28.0
mcp==1.28.1
fastmcp==3.4.2
qdrant-client==1.18.0
fastembed==0.8.0