From bcf2b5cab5fcf525e6a47b23150003cb2550c6c5 Mon Sep 17 00:00:00 2001 From: Grigory Date: Mon, 12 Feb 2024 22:08:33 +0100 Subject: [PATCH] Add ci --- .github/scripts/check_diff.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/scripts/check_diff.py b/.github/scripts/check_diff.py index 8823260f..3d46bca1 100644 --- a/.github/scripts/check_diff.py +++ b/.github/scripts/check_diff.py @@ -27,8 +27,10 @@ ) ): dirs_to_run.update(LANGCHAIN_DIRS) - elif file.startswith("libs/"): - dirs_to_run.update(LANGCHAIN_DIRS) + elif "libs/genai" in file: + dirs_to_run.update(("libs/genai")) + elif "libs/vertexai" in file: + dirs_to_run.update(("libs/vertexai")) else: pass json_output = json.dumps(list(dirs_to_run))