Separate jobs

This commit is contained in:
William Fu-Hinthorn
2025-10-31 17:33:50 -07:00
parent f633affd14
commit 42811fc41b
2 changed files with 111 additions and 47 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Setup LangGraph CLI
description: Set up Python and install the CLI
inputs:
python-version:
description: Python version (e.g. 3.11)
required: true
runs:
using: composite
steps:
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ inputs.python-version }}
enable-cache: true
cache-suffix: cli-integration-test
ignore-nothing-to-cache: true
- name: Install CLI
shell: bash
working-directory: libs/cli
run: pip install -e .