We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56795b commit f00e1eaCopy full SHA for f00e1ea
1 file changed
.github/workflows/test.yml
@@ -36,3 +36,18 @@ jobs:
36
run: |
37
python --version
38
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
48
+ python -m pip cache dir > /dev/null
49
50
+ - name: "Windows: pip cache dir > NUL"
51
+ if: "startsWith(matrix.os, 'windows')"
52
53
+ python -m pip cache dir > NUL
0 commit comments