Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ runs:

- name: Install dependencies
shell: bash
env:
EXTRA_ARGS: ${{ inputs.extra-args }}
run: |
args="--all-extras --dev"
if [[ "${{ inputs.include-docs }}" == "true" ]]; then
args="$args --group docs"
fi
uv sync $args ${{ inputs.extra-args }}
# shellcheck disable=SC2086 # intentional word-splitting for uv flags
uv sync $args $EXTRA_ARGS
Loading