Skip to content

Commit 225534a

Browse files
committed
try to fix caching.
1 parent 8068528 commit 225534a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/full-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: cache-venv
2626
with:
2727
path: ./test_env
28-
key: $venv-{{ runner.os }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements_testing.txt') }}
28+
key: {{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements_testing.txt') }}
2929
restore-keys: |
3030
${{ runner.os }}-venv-
3131
- name: Install dependencies
@@ -49,7 +49,7 @@ jobs:
4949
HASH_EPHY_DATASET: git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1
5050
with:
5151
path: ~/ephy_testing_data
52-
key: ${{ runner.os }}-datasets-${HASH_EPHY_DATASET}
52+
key: ${{ runner.os }}-datasets-${{ env.HASH_EPHY_DATASET }}
5353
restore-keys: |
5454
${{ runner.os }}-datasets
5555
- name: Test with pytest

0 commit comments

Comments
 (0)