Skip to content

Commit 31f5107

Browse files
authored
Check integrity of wheel files during release (#1843)
1 parent e158fa1 commit 31f5107

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,9 @@ jobs:
514514

515515
- run: twine check --strict dist/*
516516

517+
- name: Test wheels integrity
518+
run: for whl in dist/*.whl; do unzip -qt "$z"; done
519+
517520
- uses: actions/upload-artifact@v4
518521
with:
519522
name: pypi_files_${{ matrix.os }}_${{ matrix.target }}_${{ matrix.interpreter || 'all' }}_${{ matrix.manylinux }}
@@ -715,6 +718,9 @@ jobs:
715718
merge-multiple: true
716719
path: dist
717720

721+
- name: Test wheels integrity
722+
run: for whl in dist/*.whl; do unzip -qt "$z"; done
723+
718724
- run: uv publish --trusted-publishing always
719725

720726
- name: get wasm dist artifacts

0 commit comments

Comments
 (0)