Skip to content

Commit 1efc32c

Browse files
committed
Show installed packages after install
1 parent 87cd2a9 commit 1efc32c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/dist.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ jobs:
7373
WHEEL=$(ls *.whl)
7474
python -m pip --disable-pip-version-check install ${WHEEL}[all]
7575
76+
- name: Show installed packages
77+
shell: bash
78+
run: |
79+
python -m pip list
80+
7681
# Only need to test that the wheel installs
7782

7883
cross-test:
@@ -129,6 +134,11 @@ jobs:
129134
WHEEL=$(ls *.whl)
130135
/build/venv/bin/cross-pip --disable-pip-version-check install ${WHEEL}[all]
131136
137+
- name: Show installed packages
138+
shell: bash
139+
run: |
140+
/build/venv/bin/cross-python -m pip list
141+
132142
publish:
133143
runs-on: ubuntu-latest
134144
needs: [check, test, cross-test]

0 commit comments

Comments
 (0)