Skip to content

Commit 12d7887

Browse files
committed
specify shell
1 parent 01c8f70 commit 12d7887

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ on:
88
jobs:
99
test:
1010
runs-on: ${{ matrix.os }}
11+
defaults:
12+
run:
13+
shell: bash -l {0}
1114
strategy:
1215
fail-fast: false
1316
matrix:
14-
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
17+
os: ["ubuntu-latest"] #, "macos-latest", "windows-latest"]
1518
python-version: [3.7] #, 3.8, 3.9]
1619
steps:
1720
- name: Checkout
@@ -27,8 +30,10 @@ jobs:
2730
- name: Build
2831
run: |
2932
conda info
33+
conda config --show-sources
3034
conda config --show
3135
conda list
36+
conda env list
3237
python setup.py build_ext --inplace
3338
python setup.py develop
3439
- name: Test

0 commit comments

Comments
 (0)