mirror of
https://github.com/langchain-ai/mcpdoc.git
synced 2025-10-19 03:18:14 +03:00
22 lines
480 B
YAML
22 lines
480 B
YAML
# TODO: https://docs.astral.sh/uv/guides/integration/github/#caching
|
|
|
|
name: uv-install
|
|
description: Set up Python and uv
|
|
|
|
inputs:
|
|
python-version:
|
|
description: Python version, supporting MAJOR.MINOR only
|
|
required: true
|
|
|
|
env:
|
|
UV_VERSION: "0.5.25"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install uv and set the python version
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
version: ${{ env.UV_VERSION }}
|
|
python-version: ${{ inputs.python-version }}
|