Skip to content

Commit c1fcdd0

Browse files
committed
ci: remove redundant shell specification
1 parent af5bbb0 commit c1fcdd0

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ env:
3030
jobs:
3131
build:
3232
runs-on: ubuntu-22.04
33-
defaults:
34-
run:
35-
shell: bash
3633
steps:
3734
- uses: actions/checkout@v4
3835

@@ -68,6 +65,11 @@ jobs:
6865
nb${{ matrix.notebook-version }}
6966
needs: [build]
7067
timeout-minutes: 30
68+
runs-on: ${{ matrix.os }}
69+
defaults:
70+
run:
71+
shell: bash # windows default isn't bash
72+
7173
strategy:
7274
fail-fast: false
7375
matrix:
@@ -94,11 +96,6 @@ jobs:
9496
- jupyter_server-version: "1"
9597
jupyterlab-version: "4"
9698

97-
runs-on: ${{ matrix.os }}
98-
defaults:
99-
run:
100-
shell: bash
101-
10299
steps:
103100
- uses: actions/checkout@v4
104101

0 commit comments

Comments
 (0)