We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc5219e commit ba26f7bCopy full SHA for ba26f7b
1 file changed
.github/workflows/python_jobs.yml
@@ -25,10 +25,14 @@ jobs:
25
- name: Add conda defaults channel
26
run: conda config --add channels defaults
27
28
- - name: Initialize powershell for conda (Windows only)
+ - name: Initialize powershell for conda (Windows)
29
if: runner.os == 'Windows'
30
run: conda init powershell
31
32
+ - name: Initialize powershell for conda (Linux)
33
+ if: runner.os == 'Linux'
34
+ run: conda init bash
35
+
36
- name: Install dependencies with conda
37
run: |
38
# conda install numpy -y
0 commit comments