Spaces:
Sleeping
Sleeping
Commit ·
8c71da9
1
Parent(s): 4a357d8
fix ci/cd uv installation
Browse files- .github/workflows/cd.yml +1 -3
- .github/workflows/ci.yml +1 -3
.github/workflows/cd.yml
CHANGED
|
@@ -27,9 +27,7 @@ jobs:
|
|
| 27 |
python-version: "3.13"
|
| 28 |
|
| 29 |
- name: Install uv
|
| 30 |
-
|
| 31 |
-
curl -LsSf https://astral.sh/uv/install.sh | sh
|
| 32 |
-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
| 33 |
|
| 34 |
- name: Install dependencies
|
| 35 |
run: |
|
|
|
|
| 27 |
python-version: "3.13"
|
| 28 |
|
| 29 |
- name: Install uv
|
| 30 |
+
uses: astral-sh/setup-uv@v5
|
|
|
|
|
|
|
| 31 |
|
| 32 |
- name: Install dependencies
|
| 33 |
run: |
|
.github/workflows/ci.yml
CHANGED
|
@@ -22,9 +22,7 @@ jobs:
|
|
| 22 |
python-version: ${{ matrix.python-version }}
|
| 23 |
|
| 24 |
- name: Install uv
|
| 25 |
-
|
| 26 |
-
curl -LsSf https://astral.sh/uv/install.sh | sh
|
| 27 |
-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
| 28 |
|
| 29 |
- name: Install linting tools
|
| 30 |
run: |
|
|
|
|
| 22 |
python-version: ${{ matrix.python-version }}
|
| 23 |
|
| 24 |
- name: Install uv
|
| 25 |
+
uses: astral-sh/setup-uv@v5
|
|
|
|
|
|
|
| 26 |
|
| 27 |
- name: Install linting tools
|
| 28 |
run: |
|