From dbbe8e57e433012aa8daccfd296579da3e450d61 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 29 Oct 2024 14:11:41 +0100 Subject: [PATCH] test: Attempt to resolve newline issue Attempt at resolving issue of github actions understanding run command Test #COG-462 --- .github/workflows/test_notebook.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_notebook.yml b/.github/workflows/test_notebook.yml index 36ed11f27..54bf28ab9 100644 --- a/.github/workflows/test_notebook.yml +++ b/.github/workflows/test_notebook.yml @@ -53,8 +53,9 @@ jobs: LLM_API_KEY: ${{ secrets.OPENAI_API_KEY }} GRAPHISTRY_USERNAME: ${{ secrets.GRAPHISTRY_USERNAME }} GRAPHISTRY_PASSWORD: ${{ secrets.GRAPHISTRY_PASSWORD }} - run: poetry run jupyter nbconvert \ - --to notebook \ - --execute notebooks/cognee_demo.ipynb \ - --output notebooks/executed_notebook.ipynb \ - --ExecutePreprocessor.timeout=1200 \ No newline at end of file + run: | + poetry run jupyter nbconvert \ + --to notebook \ + --execute notebooks/cognee_demo.ipynb \ + --output notebooks/executed_notebook.ipynb \ + --ExecutePreprocessor.timeout=1200 \ No newline at end of file