Skip to content

Commit 7948441

Browse files
authored
Actually perform checks on alternate trampoline platforms (#8642)
It seems unintentional that we basically did nothing on these alternative platforms? It seems like an artifact from some previous change. I'm not sure it's worth running Clippy multiple times. We could also just reduce the matrix here.
1 parent 9e851c1 commit 7948441

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -359,12 +359,10 @@ jobs:
359359

360360
- name: "Clippy"
361361
working-directory: ${{ env.UV_WORKSPACE }}/crates/uv-trampoline
362-
if: matrix.target-arch == 'x86_64'
363362
run: cargo clippy --all-features --locked --target x86_64-pc-windows-msvc --tests -- -D warnings
364363

365364
- name: "Bloat Check"
366365
working-directory: ${{ env.UV_WORKSPACE }}/crates/uv-trampoline
367-
if: matrix.target-arch == 'x86_64'
368366
run: |
369367
$output = cargo bloat --release --target x86_64-pc-windows-msvc
370368
$filteredOutput = $output | Select-String -Pattern 'core::fmt::write|core::fmt::getcount' -NotMatch

0 commit comments

Comments
 (0)