Skip to content

Commit

Permalink
Update Python version command in GitHub workflow
Browse files Browse the repository at this point in the history
Modified the command for checking the Python version to use 'uv run' instead of 'python'. This ensures consistency and proper execution within the specified environment.
  • Loading branch information
lipemorais committed Oct 29, 2024
1 parent f676068 commit e253aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync-to-ynab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: uv --version
- name: Install Python 3.12
run: uv python install 3.12
- run: python --version
- run: uv run python --version
- name: Verify cache
if: steps.setup-uv.outputs.cache-hit == 'true'
run: echo "Cache was restored"
Expand Down

0 comments on commit e253aed

Please sign in to comment.