File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,23 @@ jobs:
43
43
- name : Check out repo
44
44
uses : actions/checkout@v4
45
45
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
48
51
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
52
57
53
58
- name : Installing abinit from conda-forge
54
59
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
57
63
abinit --version
58
64
abinit --build
59
65
You can’t perform that action at this time.
0 commit comments