ops: update hashing for the cache

This commit is contained in:
Karim shoair
2025-06-27 14:19:07 +03:00
parent 941ed20a15
commit 94edb92bc3
+1 -1
View File
@@ -65,7 +65,7 @@ jobs:
with:
path: .tox
# Include python version and os in cache key
key: tox-v1-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('tox.ini', 'setup.py', 'requirements*.txt') }}
key: tox-v1-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('tox.ini', 'pyproject.toml', 'requirements*.txt') }}
restore-keys: |
tox-v1-${{ runner.os }}-py${{ matrix.python-version }}-
tox-v1-${{ runner.os }}-