File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
.github/actions/setup-conda Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,14 @@ inputs:
3
3
environment-file :
4
4
description : Conda environment file to use.
5
5
default : environment.yml
6
- environment-name :
7
- description : Name to use for the Conda environment
8
- default : test
9
- extra-specs :
10
- description : Extra packages to install
11
- required : false
12
6
runs :
13
7
using : composite
14
8
steps :
15
9
- name : Install ${{ inputs.environment-file }}
16
10
uses : mamba-org/setup-micromamba@v1
17
11
with :
18
12
environment-file : ${{ inputs.environment-file }}
19
- environment-name : ${{ inputs.environment-name }}
20
- create-args : ${{ inputs.extra-specs }}
13
+ environment-name : test
21
14
condarc-file : ci/condarc.yml
22
- cache-env : true
15
+ cache-environment : true
23
16
cache-downloads : true
You can’t perform that action at this time.
0 commit comments