From 4ddab646ce6f1ae243fe5e49e45f28d63b9539c7 Mon Sep 17 00:00:00 2001 From: Greyson Lalonde Date: Mon, 15 Sep 2025 13:08:27 -0400 Subject: [PATCH] fix: correct uv sync flag order to ensure all extras are installed --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6638b50a7..5b4172960 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,7 +45,7 @@ jobs: enable-cache: false - name: Install the project - run: uv sync --all-groups --all-extras && uv sync --package crewai-core --all-extras && uv sync --package crewai-tools --all-extras + run: uv sync --all-groups --all-extras && uv sync --all-extras --package crewai-core && uv sync --all-extras --package crewai-tools - name: Restore test durations uses: actions/cache/restore@v4