From 70c2aff1787e5905602bb2fe2abcc0836b3a823d Mon Sep 17 00:00:00 2001 From: marsipu Date: Sun, 27 Aug 2023 15:49:17 +0200 Subject: [PATCH] try again --- .github/workflows/run_tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 28f8f3b..0152807 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -45,11 +45,12 @@ jobs: mkdir -p mne/datasets curl --output-dir mne/datasets/ --remote-name https://raw.githubusercontent.com/mne-tools/mne-python/main/tools/config.py curl --remote-name https://raw.githubusercontent.com/mne-tools/mne-python/main/tools/get_testing_version.sh - export TESTING_VERSION=$(get_testing_version.sh) - echo $TESTING_VERSION + echo "local_test=$(./get_testing_version.sh)" >> $GITHUB_ENV + echo ${TESTING_VERSION} + echo ${local_test} - uses: actions/cache@v3 with: - key: $TESTING_VERSION + key: ${{ env.TESTING_VERSION }} path: ~/mne_data name: 'Cache testing data' - run: python -c 'import mne; print(mne.datasets.testing.data_path(verbose=True))'