Skip to content

Commit 20882ce

Browse files
committed
fix(ci): disable UV cache to prevent pipelne stalling due to lock issues
1 parent 15424fc commit 20882ce

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
uses: astral-sh/setup-uv@v6
3232
with:
3333
version: "latest"
34+
enable-cache: false
3435

3536
- name: ⚙️ Set Python up and add dependencies
3637
run: |
@@ -60,6 +61,7 @@ jobs:
6061
uses: astral-sh/setup-uv@v6
6162
with:
6263
version: "latest"
64+
enable-cache: false
6365

6466
- name: ⚙️ Set Python up and add dependencies
6567
run: |
@@ -113,6 +115,7 @@ jobs:
113115
uses: astral-sh/setup-uv@v6
114116
with:
115117
version: "latest"
118+
enable-cache: false
116119

117120
- name: ⚙️ Set Python ${{ matrix.python-version }} up and add dependencies
118121
run: |
@@ -138,7 +141,7 @@ jobs:
138141
uses: codecov/codecov-action@v5
139142
if: matrix.python-version == '3.12'
140143
with:
141-
file: ./coverage.xml
144+
files: ./coverage.xml
142145
flags: unittests
143146
name: codecov-umbrella
144147

@@ -158,6 +161,7 @@ jobs:
158161
uses: astral-sh/setup-uv@v6
159162
with:
160163
version: "latest"
164+
enable-cache: false
161165

162166
- name: ⚙️ Set Python ${{ matrix.python-version }} up and add dependencies
163167
run: |
@@ -208,6 +212,7 @@ jobs:
208212
uses: astral-sh/setup-uv@v6
209213
with:
210214
version: "latest"
215+
enable-cache: false
211216

212217
- name: ⚙️ Set up Python
213218
run: uv python install 3.12

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
uses: astral-sh/setup-uv@v6
4848
with:
4949
version: "latest"
50+
enable-cache: false
5051

5152
- name: ⚙️ Set up Python
5253
run: uv python install 3.12
@@ -69,6 +70,7 @@
6970
uses: astral-sh/setup-uv@v6
7071
with:
7172
version: "latest"
73+
enable-cache: false
7274

7375
- name: ⚙️ Set Python up and add dependencies
7476
run: |
@@ -113,6 +115,7 @@
113115
uses: astral-sh/setup-uv@v6
114116
with:
115117
version: "latest"
118+
enable-cache: false
116119

117120
- name: ⚙️ Set up Python ${{ matrix.python-version }}
118121
run: |
@@ -158,6 +161,7 @@
158161
uses: astral-sh/setup-uv@v6
159162
with:
160163
version: "latest"
164+
enable-cache: false
161165

162166
- name: ⚙️ Set up Python
163167
run: uv python install 3.12

0 commit comments

Comments
 (0)