File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
.github/actions/install-dependencies Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,11 @@ runs:
1515 - name : Setup conda-forge
1616 uses : conda-incubator/setup-miniconda@v2
1717 with :
18- # miniforge-variant: Mambaforge
19- # miniforge-version: latest
18+ miniforge-variant : Mambaforge
19+ miniforge-version : latest
2020 activate-environment : mpi-tutorial
2121 python-version : ${{ inputs.python-version }}
22- # Do not use mamba as it resolves differently than conda
23- # use-mamba: false
22+ use-mamba : true
2423 # uncomment to install env in one go (without caching)
2524 # environment-file: environment.yml
2625 # needed for caching
4140
4241 - name : Update environment
4342 if : steps.cache-env.outputs.cache-hit != 'true'
44- # Change to mamba if we want to use it
4543 run :
46- conda env update -n mpi-tutorial -f environment.yml
44+ mamba env update -n mpi-tutorial -f environment.yml
4745 shell : bash -el {0}
You can’t perform that action at this time.
0 commit comments