Skip to content

Commit

Permalink
Replace mamba with conda in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RenzoTale88 authored Apr 28, 2022
1 parent 6edf82a commit fba9a69
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@ jobs:
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install mamba
run: |
conda install -c conda-forge -y mamba
- name: Create generic environment
run: |
mamba env create -f environment.yml
conda env create -f environment.yml
- name: Create R environment
run: |
mamba env create -f assets/r-environment.yml
conda env create -f assets/r-environment.yml
- name: Create conda environment
run: |
mamba remove -y -n nf-LO --all
mamba env create -f assets/environment.yml
conda remove -y -n nf-LO --all
conda env create -f assets/environment.yml

0 comments on commit fba9a69

Please sign in to comment.