diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be259f4..01c21d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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