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 92b3b9a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ 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 +92,11 @@ 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 92b3b9a

Please sign in to comment.