fix: Update cache key to include requirements-test.txt for better dependency management
Some checks failed
Run Tests / test (push) Failing after 4m48s

This commit is contained in:
2025-10-25 16:11:32 +02:00
parent 01a702847d
commit 9bd5b60d7a

View File

@@ -29,8 +29,9 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements-test.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
${{ runner.os }}-pip-
- name: Install dependencies
run: |