UV_PYTHON_DOWNLOADS, UV_SYSTEM_PYTHON, setup-python

This commit is contained in:
Kevin Stillhammer
2025-07-17 13:20:28 +02:00
parent 221dfb4c5a
commit 185459b7f8

View File

@ -282,6 +282,10 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-latest ] os: [ ubuntu-latest, macos-latest, windows-latest ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: __tests__/fixtures/uv-project/pyproject.toml
- name: Install latest version - name: Install latest version
uses: ./ uses: ./
with: with:
@ -291,6 +295,9 @@ jobs:
working-directory: __tests__/fixtures/uv-project working-directory: __tests__/fixtures/uv-project
run: uv sync run: uv sync
shell: bash shell: bash
env:
UV_PYTHON_DOWNLOADS: "never"
UV_SYSTEM_PYTHON: 1
- name: Verify bin files available - name: Verify bin files available
working-directory: __tests__/fixtures/uv-project working-directory: __tests__/fixtures/uv-project
run: ruff --version run: ruff --version