5
0
mirror of https://github.com/astral-sh/setup-uv.git synced 2025-12-21 11:01:40 +00:00

Support OS using musl (#284)

Fixes: #278
This commit is contained in:
Kevin Stillhammer
2025-02-17 10:32:34 +01:00
committed by GitHub
parent bb8d247e1a
commit e2e9087257
6 changed files with 200 additions and 20 deletions

View File

@@ -200,7 +200,6 @@ jobs:
exit 1
fi
shell: bash
test-malformed-pyproject-file-fallback:
runs-on: ubuntu-latest
steps:
@@ -212,3 +211,13 @@ jobs:
pyproject-file: "__tests__/fixtures/malformed-pyproject-toml-project/pyproject.toml"
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-musl:
runs-on: ubuntu-latest
container: alpine
steps:
- uses: actions/checkout@v4
- name: Install latest version
uses: ./
- run: apk add python3
- run: uv sync
working-directory: __tests__/fixtures/uv-project