From 1653cdda46ea56def6439e65fd93d38a4978a1a4 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Fri, 10 Jan 2025 17:24:38 +0100 Subject: [PATCH] test: Add github action for testing llama index cognee integration notebook --- ...lama_index_cognee_integration_notebook.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test_llama_index_cognee_integration_notebook.yml diff --git a/.github/workflows/test_llama_index_cognee_integration_notebook.yml b/.github/workflows/test_llama_index_cognee_integration_notebook.yml new file mode 100644 index 000000000..aacc31eb5 --- /dev/null +++ b/.github/workflows/test_llama_index_cognee_integration_notebook.yml @@ -0,0 +1,20 @@ +name: test | llama index cognee integration notebook + +on: + workflow_dispatch: + pull_request: + types: [labeled, synchronize] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + run_notebook_test: + uses: ./.github/workflows/reusable_notebook.yml + with: + notebook-location: notebooks/llama_index_cognee_integration.ipynb + secrets: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + GRAPHISTRY_USERNAME: ${{ secrets.GRAPHISTRY_USERNAME }} + GRAPHISTRY_PASSWORD: ${{ secrets.GRAPHISTRY_PASSWORD }}