We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31be42e + 76ea2ec commit e25a092Copy full SHA for e25a092
1 file changed
.github/workflows/upload-to-anaconda.yaml
@@ -33,18 +33,18 @@ jobs:
33
- uses: actions/checkout@v3
34
- uses: conda-incubator/setup-miniconda@v2
35
with:
36
- miniconda-version: "latest"
37
- channels: bioconda, conda-forge, defaults
+ mamba-version: "*"
+ channels: conda-forge, bioconda, defaults
38
use-only-tar-bz2: true
39
auto-update-conda: true
40
python-version: ${{ matrix.python-version }}
41
42
- name: Install dependencies
43
run: |
44
- conda install pytest>=7
+ mamba install pytest>=7
45
- name: Install p3droslo from Anaconda.org
46
47
- conda install -c freddeceuster p3droslo
+ mamba install -c freddeceuster p3droslo
48
- name: Test with pytest
49
50
pytest
0 commit comments