@@ -30,17 +30,17 @@ jobs:
30
30
python-version : ['3.8', '3.9', '3.10', '3.11']
31
31
32
32
steps :
33
- - uses : actions/checkout@v2
34
- - uses : conda-incubator/setup-miniconda@v2
33
+ - uses : actions/checkout@v3
34
+ - uses : mamba-org/provision-with-micromamba@main
35
35
with :
36
- auto-update-conda : true
37
- python-version : ${{ matrix.python-version }}
36
+ environment-file : false
37
+ environment-name : gha-testing
38
38
channels : conda-forge,nodefaults
39
- mamba-version : " * "
40
-
41
- - name : Install core dependencies.
42
- shell : bash -l {0}
43
- run : mamba install -c conda-forge tox-conda coverage
39
+ extra-specs : |
40
+ python=${{ matrix.python-version }}
41
+ mamba
42
+ tox-conda
43
+ cache-downloads : true
44
44
45
45
# Unit, integration, and end-to-end tests.
46
46
@@ -78,14 +78,17 @@ jobs:
78
78
runs-on : ubuntu-latest
79
79
80
80
steps :
81
- - uses : actions/checkout@v2
82
- - uses : conda-incubator/setup-miniconda@v2
81
+ - uses : actions/checkout@v3
82
+ - uses : mamba-org/provision-with-micromamba@main
83
83
with :
84
- auto-update-conda : true
85
-
86
- - name : Install core dependencies.
87
- shell : bash -l {0}
88
- run : conda install -c conda-forge tox-conda
84
+ environment-file : false
85
+ environment-name : gha-docs
86
+ channels : conda-forge,nodefaults
87
+ extra-specs : |
88
+ python=3.11
89
+ mamba
90
+ tox-conda
91
+ cache-downloads : true
89
92
90
93
- name : Build docs
91
94
shell : bash -l {0}
0 commit comments