We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2660c92 commit 087b4f8Copy full SHA for 087b4f8
1 file changed
.github/workflows/azure-pipelines.yml
@@ -22,6 +22,15 @@ jobs:
22
- name: Checkout
23
uses: actions/checkout@v1
24
25
+ - name: Cache conda
26
+ uses: actions/cache@v1
27
+ env:
28
+ # Increase this value to reset cache if environment.yml has not changed
29
+ CACHE_NUMBER: 0
30
+ with:
31
+ path: ~/conda_pkgs_dir
32
+ key: ${{ runner.os }}-conda-${{ matrix.python }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }}
33
+
34
- uses: conda-incubator/setup-miniconda@v2
35
with:
36
auto-update-conda: true
0 commit comments