From 6763fd802ca6c7e263f451e765dbe9bcd6d55bd0 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Thu, 30 Oct 2025 13:05:57 +0100 Subject: [PATCH] fix: comment out pip cache steps for debugging purposes --- .github/workflows/ci.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 680fe6b..6897de3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |