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 9ae5041 commit 423c372Copy full SHA for 423c372
.github/actions/install-dependencies/action.yml
@@ -38,8 +38,19 @@ runs:
38
key:
39
conda-env-${{ steps.get-date.outputs.today }}-${{ inputs.python-version }}-${{ hashFiles('environment.yml') }}
40
41
+ - name: Clear package cache
42
+ # package cache seems to be stale
43
+ run:
44
+ mamba clean -y --index-cache
45
+
46
+ shell: bash -el {0}
47
- name: Update environment
48
if: steps.cache-env.outputs.cache-hit != 'true'
49
run:
50
mamba env update -n mpi-tutorial -f environment.yml
51
shell: bash -el {0}
52
53
+ - name: List environment
54
55
+ mamba list -n mpi-tutorial
56
0 commit comments