Skip to content

Commit f00e1ea

Browse files
committed
pip cache dir
1 parent f56795b commit f00e1ea

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,18 @@ jobs:
3636
run: |
3737
python --version
3838
python test.py
39+
python -m pip --version
40+
41+
- name: pip cache dir
42+
run: |
43+
python -m pip cache dir
44+
45+
- name: "Non-Windows: pip cache dir > /dev/null"
46+
if: "!startsWith(matrix.os, 'windows')"
47+
run: |
48+
python -m pip cache dir > /dev/null
49+
50+
- name: "Windows: pip cache dir > NUL"
51+
if: "startsWith(matrix.os, 'windows')"
52+
run: |
53+
python -m pip cache dir > NUL

0 commit comments

Comments
 (0)