Skip to content

Commit 08c3d3b

Browse files
committed
Revert some changes as Min fixed everything in a separate branch
1 parent 9f2848f commit 08c3d3b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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
@@ -41,7 +40,6 @@ runs:
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}

0 commit comments

Comments
 (0)