Skip to content

Commit

Permalink
init conda separately
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 31, 2023
1 parent e7015b8 commit ecad4f4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ jobs:
with:
auto-update-conda: true

- name: Init Conda
run: conda init

- name: Prepare
run: |
conda info --envs
conda init
conda create -n work python=${{ inputs.py_version }}
conda activate work
conda config --prepend channels bblanchon
Expand Down Expand Up @@ -91,10 +93,12 @@ jobs:
with:
auto-update-conda: true

- name: Init Conda
run: conda init

- name: Prepare
run: |
conda info --envs
conda init
conda create -n work python=${{ matrix.py }}
conda activate work
conda config --prepend channels bblanchon
Expand Down

0 comments on commit ecad4f4

Please sign in to comment.