Skip to content

Commit

Permalink
fixup: update uv default version and windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Dec 23, 2024
1 parent 8e08285 commit 41b0282
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/setup-python-uv/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
uv-version:
description: "The uv version to set up"
required: true
default: "0.4.18"
default: "0.5.8"

runs:
using: "composite"
Expand All @@ -24,5 +24,12 @@ runs:
- run: |
uv sync --frozen --all-extras --dev
uv pip install tox tox-uv
shell: bash
- if: "runner.os != 'Windows'"
shell: bash
run: |
echo "$(pwd)/.venv/bin" >> $GITHUB_PATH
- if: "runner.os == 'Windows'"
shell: bash
run: |
echo "$(pwd)\.venv\Scripts" >> $GITHUB_PATH

0 comments on commit 41b0282

Please sign in to comment.