mirror of
https://github.com/exo-explore/exo.git
synced 2026-05-19 12:15:07 -04:00
Overhaul CI Design
This commit is contained in:
20
.github/actions/setup-python-uv/action.yml
vendored
Normal file
20
.github/actions/setup-python-uv/action.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Setup Python & uv
|
||||
|
||||
description: "Regenerate Python environment from uv.lock"
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v6
|
||||
with:
|
||||
enable-cache: true
|
||||
cache-dependency-glob: uv.lock
|
||||
|
||||
- name: Install Python
|
||||
run: uv python install
|
||||
shell: bash
|
||||
|
||||
- name: Sync
|
||||
run: uv sync --locked --all-extras --dev
|
||||
shell: bash
|
||||
Reference in New Issue
Block a user