From 788df24460fc1f8ec5ad7e98b4783f25938f3a67 Mon Sep 17 00:00:00 2001 From: csteiner <47841949+clintonsteiner@users.noreply.github.com> Date: Tue, 7 Jan 2025 07:46:44 -0600 Subject: [PATCH] docs: github actions example: remove unneeded install step (#10356) * Previously had uv python install, then uv sync --all-extras --dev * If we are going to use sync for dev dependencies, then the install step is unneccessary ## Summary ## Test Plan --- docs/guides/integration/github.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/guides/integration/github.md b/docs/guides/integration/github.md index d09fb6a7b..cbc726ac7 100644 --- a/docs/guides/integration/github.md +++ b/docs/guides/integration/github.md @@ -182,9 +182,6 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v5 - - name: Set up Python - run: uv python install - - name: Install the project run: uv sync --all-extras --dev