Skip to content

Commit cf906e6

Browse files
committed
Use conda instead of miniconda
1 parent fabe565 commit cf906e6

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,23 @@ jobs:
4343
- name: Check out repo
4444
uses: actions/checkout@v4
4545

46-
- name: Set up micromamba
47-
uses: mamba-org/setup-micromamba@main
46+
- name: Set up Miniconda
47+
uses: conda-incubator/setup-miniconda@v2
48+
with:
49+
auto-update-conda: true
50+
python-version: 3.8
4851

49-
- name: Create mamba environment
50-
run: |
51-
micromamba create -n abipy python=${{ matrix.config.python }} --yes
52+
#- name: Set up micromamba
53+
# uses: mamba-org/setup-micromamba@main
54+
#- name: Create mamba environment
55+
# run: |
56+
# micromamba create -n abipy python=${{ matrix.config.python }} --yes
5257

5358
- name: Installing abinit from conda-forge
5459
run: |
55-
micromamba run -n abipy install abinit -c conda-forge
56-
micromamba activate abipy
60+
conda create -n abipy python=${{ matrix.config.python }} --yes
61+
conda activate abipy
62+
conda install abinit -c conda-forge
5763
abinit --version
5864
abinit --build
5965

0 commit comments

Comments
 (0)