fix: comment out pip cache steps for debugging purposes

This commit is contained in:
2025-10-30 13:05:57 +01:00
parent 56840ac313
commit 6763fd802c

View File

@@ -24,21 +24,21 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Locate pip cache directory
id: pip-cache-dir
# extra output for debugging
run: |
echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
echo "dir=$(python -m pip cache dir)"
# - name: Locate pip cache directory
# id: pip-cache-dir
# # extra output for debugging
# run: |
# echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
# echo "dir=$(python -m pip cache dir)"
- name: Cache pip
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-py-${{ matrix.python-version }}-pip-
${{ runner.os }}-pip-
# - name: Cache pip
# uses: actions/cache@v4
# with:
# path: ${{ steps.pip-cache-dir.outputs.dir }}
# key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-py-${{ matrix.python-version }}-pip-
# ${{ runner.os }}-pip-
- name: Install dependencies
run: |