Skip to content

Commit ba26f7b

Browse files
authored
Update conda initialization steps for Windows and Linux
1 parent cc5219e commit ba26f7b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/python_jobs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@ jobs:
2525
- name: Add conda defaults channel
2626
run: conda config --add channels defaults
2727

28-
- name: Initialize powershell for conda (Windows only)
28+
- name: Initialize powershell for conda (Windows)
2929
if: runner.os == 'Windows'
3030
run: conda init powershell
3131

32+
- name: Initialize powershell for conda (Linux)
33+
if: runner.os == 'Linux'
34+
run: conda init bash
35+
3236
- name: Install dependencies with conda
3337
run: |
3438
# conda install numpy -y

0 commit comments

Comments
 (0)