Overhaul CI Design

This commit is contained in:
Arbion Halili
2025-06-28 12:29:01 +01:00
parent f7f779da19
commit e4c4b3e95a
10 changed files with 143 additions and 136 deletions

View 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