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

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

<!-- What's the purpose of the change? What does it do, and why? -->

## Test Plan

<!-- How was it tested? -->
This commit is contained in:
csteiner 2025-01-07 07:46:44 -06:00 committed by GitHub
parent 671e93816a
commit 788df24460
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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