Skip to content

Commit 19f350f

Browse files
committed
show installed size as well
1 parent 30e1023 commit 19f350f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
- name: Check metadata verification
4040
run: python -m twine check --strict dist/*
4141

42+
- name: Ensure that the wheel installs correctly, and show installed size
43+
run: |
44+
pip install $(find dist -type f -name "*.whl")
45+
du -h $(python -c "import pvlib; print(pvlib.__path__[0])")
46+
4247
# only publish distribution to PyPI for tagged commits
4348
- name: Publish distribution to PyPI
4449
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)