mirror of
https://github.com/gumyr/build123d.git
synced 2026-03-10 08:42:06 -07:00
18 lines
399 B
YAML
18 lines
399 B
YAML
name: 'Setup'
|
|
inputs:
|
|
python-version: # id of input
|
|
description: 'Python version'
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Python
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
enable-cache: false
|
|
python-version: ${{ inputs.python-version }}
|
|
- name: Install Requirements
|
|
shell: bash
|
|
run: |
|
|
uv pip install .[development]
|