Skip to content

Commit ac3a14e

Browse files
committed
✏️ Adjust the if-condition and running logic.
1 parent 1dd9225 commit ac3a14e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/setup-python-uv/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ runs:
5050
working-directory: ${{ inputs.working-directory }}
5151
shell: bash
5252
run: |
53-
if [ "${{ inputs.dependency-groups }}" = "none" ]; then
54-
echo "Skipping dependency installation"
53+
if [ "${{ inputs.dependency-groups }}" = "" ]; then
54+
echo "Installing dependencies without groups"
55+
uv sync
5556
else
5657
echo "Installing dependencies: [${{ inputs.dependency-groups }}]"
5758
uv sync --group ${{ inputs.dependency-groups }}

0 commit comments

Comments
 (0)