diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3a76de4..8f85c06 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,11 +32,11 @@ jobs: uses: actions/cache@v3 with: path: | - $CONDA/envs/test_env - $CONDA/pkgs - key: conda-${{ runner.os }}-${{ hashFiles('pyproject.toml') }} + /usr/share/miniconda/pkgs + /usr/share/miniconda/envs + key: ${{ runner.os }}-conda-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('install_dev_deps.py') }} restore-keys: | - conda-${{ runner.os }}- + ${{ runner.os }}-conda- - name: Install dependencies shell: bash -l {0}