Skip to content

Commit

Permalink
Using conda instead of mamba in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvansebille committed Nov 27, 2023
1 parent 68508b8 commit 9bd78f0
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/actions/install-parcels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ runs:
uses: al-cheb/configure-pagefile-action@v1.3
with:
minimum-size: 8GB
- name: Install micromamba (${{ inputs.environment-file }})
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ inputs.environment-file }}
environment-name: ${{ inputs.environment-name }}
channels: conda-forge
cache-environment: true
cache-downloads: true
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2.3.0
with:
miniconda-version: "latest"
activate-environment: ${{ inputs.environment-name }}
environment-file: ${{ inputs.environment-file }}
auto-activate-base: false
auto-update-conda: true
- run: conda info
shell: bash -el {0}
- name: Install parcels
run: pip install .
shell: bash -el {0}

0 comments on commit 9bd78f0

Please sign in to comment.