We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0fb5a commit 86bfcf2Copy full SHA for 86bfcf2
.github/workflows/env-checks.yml
@@ -57,6 +57,16 @@ jobs:
57
else
58
sed -i -e '/- python[>=]/d' environment.yml;
59
fi;
60
+
61
+ - name: Cache conda
62
+ uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
63
+ env:
64
+ # Increase this value to reset cache if environment.yml has not changed
65
+ CACHE_NUMBER: 0
66
+ with:
67
+ path: ~/conda_pkgs_dir
68
+ key:
69
+ ${{ runner.os }}-${{ matrix.python-version }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }}
70
71
# create the conda env
72
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v3.0.4
0 commit comments