/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/actions/setup-python/action.yml
24 строки
756 B
Jonathan Schwender
ci: Update various actions (#45145)
26 май 2026, 18:45
Не верифицирован
26 май 2026, 18:45
6224c64
Код
Авторство
О чём код?
name: Setup Python and uv inputs: python-version-file-path: required: false description: "Path to the .python-version file" default: '.python-version' skip-python-setup: required: false description: "Whether to skip installing python using Github's `setup-python` action" default: false runs: using: "composite" steps: # Use the setup-python action to take advantage of the cache. uv will # symlink to this version. - name: Setup system python if: ${{ inputs.skip-python-setup != 'true' }} uses: actions/setup-python@v6 with: python-version-file: ${{ inputs.python-version-file-path }} - name: Install uv uses: astral-sh/setup-uv@v8.1.0 with: version: "0.11.16"