File tree Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -18,17 +18,21 @@ jobs:
18
18
shell : bash -l {0}
19
19
steps :
20
20
- uses : actions/checkout@v2
21
- - uses : conda-incubator/setup-miniconda@v2
21
+ - name : Setup Mambaforge Python 3.7
22
+ uses : conda-incubator/setup-miniconda@v2
22
23
with :
23
24
environment-file : environment.yml
25
+ miniforge-variant : Mambaforge
26
+ miniforge-version : latest
24
27
python-version : 3.7
25
28
activate-environment : rmg_env
29
+ use-mamba : true
26
30
- name : Install codecov
27
- run : conda install -y -c conda-forge codecov
28
- - name : Conda info
31
+ run : mamba install -y -c conda-forge codecov
32
+ - name : mamba info
29
33
run : |
30
- conda info
31
- conda list
34
+ mamba info
35
+ mamba list
32
36
- name : Install and link Julia dependencies
33
37
run : |
34
38
julia -e "using Pkg; Pkg.add(PackageSpec(url=\"https://github.com/ReactionMechanismGenerator/ReactionMechanismSimulator.jl\", rev=\"main\"))"
Original file line number Diff line number Diff line change @@ -16,17 +16,21 @@ jobs:
16
16
shell : bash -l {0}
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - uses : conda-incubator/setup-miniconda@v2
19
+ - name : Setup Mambaforge Python 3.7
20
+ uses : Setup Mambaforge Python 3.7
20
21
with :
21
22
environment-file : environment.yml
23
+ miniforge-variant : Mambaforge
24
+ miniforge-version : latest
22
25
python-version : 3.7
23
26
activate-environment : rmg_env
27
+ use-mamba : true
24
28
- name : Install sphinx
25
- run : conda install -y sphinx
26
- - name : Conda info
29
+ run : mamba install -y sphinx
30
+ - name : Mamba info
27
31
run : |
28
- conda info
29
- conda list
32
+ mamba info
33
+ mamba list
30
34
- name : Install and link Julia dependencies
31
35
run : |
32
36
julia -e "using Pkg; Pkg.add(PackageSpec(url=\"https://github.com/ReactionMechanismGenerator/ReactionMechanismSimulator.jl\", rev=\"main\"))"
You can’t perform that action at this time.
0 commit comments