diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be259f4..90fd3df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,3 +36,15 @@ jobs: run: | python --version python test.py + python -m pip --version + python -m pip cache dir + + - name: Test non-Windows + if: "!startsWith(matrix.os, 'windows')" + run: | + python -m pip cache dir > /dev/null + + - name: Test Windows + if: "startsWith(matrix.os, 'windows')" + run: | + python -m pip cache dir > NUL