Skip to content

Commit 0ade56a

Browse files
committed
Fix matrix build: use Miniconda instead of deprecated Mambaforge and conda instead of mamba
1 parent 6af71bf commit 0ade56a

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/matrix-build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,18 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434

35-
- name: Set up Mambaforge
35+
- name: Set up Miniconda
3636
uses: conda-incubator/setup-miniconda@v3
3737
with:
38-
miniforge-variant: Mambaforge
39-
miniforge-version: latest
40-
use-mamba: true
38+
auto-update-conda: true
4139
python-version: ${{ matrix.python-version }}
40+
activate-environment: quantx
4241
channels: conda-forge,defaults
4342

4443
- name: Install conda-build
4544
shell: bash -l {0}
4645
run: |
47-
mamba install -y conda-build anaconda-client
46+
conda install -y conda-build anaconda-client
4847
4948
- name: Build conda package
5049
shell: bash -l {0}
@@ -56,7 +55,7 @@ jobs:
5655
shell: bash -l {0}
5756
run: |
5857
# Install the built package locally to verify it works
59-
mamba install -y --use-local quantx
58+
conda install -y --use-local quantx
6059
# Verify CLI is accessible
6160
quantx version
6261

0 commit comments

Comments
 (0)