We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd9225 commit ac3a14eCopy full SHA for ac3a14e
.github/actions/setup-python-uv/action.yml
@@ -50,8 +50,9 @@ runs:
50
working-directory: ${{ inputs.working-directory }}
51
shell: bash
52
run: |
53
- if [ "${{ inputs.dependency-groups }}" = "none" ]; then
54
- echo "Skipping dependency installation"
+ if [ "${{ inputs.dependency-groups }}" = "" ]; then
+ echo "Installing dependencies without groups"
55
+ uv sync
56
else
57
echo "Installing dependencies: [${{ inputs.dependency-groups }}]"
58
uv sync --group ${{ inputs.dependency-groups }}
0 commit comments