You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Set up the environment for a UV-managed Python project'
3
+
inputs:
4
+
project:
5
+
description: 'Which project (by subdirectory) to set up'
6
+
required: true
7
+
python-version:
8
+
description: 'Python version to install via setup-uv'
9
+
required: false
10
+
default: '3.10'
11
+
install-system-deps:
12
+
description: 'Whether to install system dependencies (libsystemd-dev on Linux)'
13
+
required: false
14
+
default: 'true'
15
+
runs:
16
+
using: 'composite'
17
+
steps:
18
+
- shell: bash
19
+
if: inputs.install-system-deps == 'true'
20
+
run: |
21
+
if [[ "${OSTYPE}" =~ "linux" ]]; then
22
+
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
0 commit comments