Skip to content

Commit 09e9101

Browse files
committed
Use Mambaforge for github action
miniconda is broken on python 3.11 + macOS
1 parent 8a0b138 commit 09e9101

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,16 @@ jobs:
2020
- uses: conda-incubator/setup-miniconda@v2
2121
with:
2222
python-version: ${{ matrix.pyversion }}
23+
auto-update-conda: true
2324
channels: conda-forge,defaults
25+
miniforge-variant: Mambaforge
26+
use-mamba: true
2427
channel-priority: strict
2528
show-channel-urls: true
2629

2730
- name: Install conda packages used by this package
2831
shell: bash -l {0}
2932
run: |
30-
conda install mamba
3133
mamba install -y -q scons eups compilers ruff flake8
3234
3335
# We have two cores so we can speed up the testing with xdist
@@ -40,7 +42,7 @@ jobs:
4042
- name: List installed packages
4143
shell: bash -l {0}
4244
run: |
43-
conda list
45+
mamba list
4446
pip list -v
4547
4648
- name: Build and test

0 commit comments

Comments
 (0)