Skip to content

Commit

Permalink
Just install Miniconda
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclary committed Oct 21, 2024
1 parent 47529f3 commit 6eceaeb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,19 @@ jobs:
with:
path: ~/Library/Caches/pip
key: ${{ runner.os }}-cachepip-install${{ matrix.INSTALL_TYPE }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('setup.py') }}
- name: Create conda test environment
- name: Install Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
environment-file: requirements/main.yml
auto-activate-base: false
activate-environment: test
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Create conda test environment
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-file: requirements/main.yml
environment-name: test
cache-downloads: true
create-args: python=${{ matrix.PYTHON_VERSION }}
- name: Install additional dependencies
shell: bash -l {0}
run: bash -l .github/scripts/install.sh
Expand Down

0 comments on commit 6eceaeb

Please sign in to comment.