Skip to content

Commit

Permalink
Use conda instead of mamba as a workaround for current issue with act…
Browse files Browse the repository at this point in the history
…ivation in miniforge
  • Loading branch information
ericpre committed Jan 14, 2025
1 parent fb0bb29 commit 633ba40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install pip (conda)
if: ${{ matrix.PACKAGE_MANAGER == 'conda' }}
run: |
mamba install pip
conda install pip
- uses: actions/setup-python@v5
if: ${{ matrix.PACKAGE_MANAGER == 'pip' }}
Expand All @@ -98,12 +98,12 @@ jobs:
- name: Install test dependencies (conda)
if: ${{ matrix.PACKAGE_MANAGER == 'conda' }}
run: |
mamba install ${{ matrix.TEST_DEPS }}
conda install ${{ matrix.TEST_DEPS }}
- name: Mamba info
- name: Conda info
if: ${{ matrix.PACKAGE_MANAGER == 'conda' }}
run: |
mamba info
conda info
- name: Conda list
if: ${{ matrix.PACKAGE_MANAGER == 'conda' }}
Expand Down

0 comments on commit 633ba40

Please sign in to comment.