Skip to content

Commit

Permalink
pip cache dir
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Feb 2, 2022
1 parent f56795b commit f00e1ea
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,18 @@ jobs:
run: |
python --version
python test.py
python -m pip --version
- name: pip cache dir
run: |
python -m pip cache dir
- name: "Non-Windows: pip cache dir > /dev/null"
if: "!startsWith(matrix.os, 'windows')"
run: |
python -m pip cache dir > /dev/null
- name: "Windows: pip cache dir > NUL"
if: "startsWith(matrix.os, 'windows')"
run: |
python -m pip cache dir > NUL

0 comments on commit f00e1ea

Please sign in to comment.