From 61509197573ea74bda4699affd83d151f6500d49 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Wed, 28 May 2025 20:58:08 -0700 Subject: [PATCH] add uv sync to setup build env --- .github/actions/setup_build_env/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup_build_env/action.yml b/.github/actions/setup_build_env/action.yml index 515cebc4aba..860ee495ed7 100644 --- a/.github/actions/setup_build_env/action.yml +++ b/.github/actions/setup_build_env/action.yml @@ -34,3 +34,7 @@ runs: prune-cache: false activate-environment: true cache-dependency-glob: "uv.lock" + - name: Install Dependencies + if: inputs.run-uv-sync == 'true' + run: uv sync + shell: bash