Skip to content

Commit 99d1657

Browse files
authored
Fix bashisms
1 parent de7ca8f commit 99d1657

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,26 +176,23 @@ jobs:
176176
uses: ./
177177
with:
178178
mpi: mpich
179-
- run: test ${{ steps.setup1.outputs.mpi }} == mpich
180-
shell: bash
179+
- run: test ${{ steps.setup1.outputs.mpi }} = mpich
181180
- run: command -v mpichversion
182181

183182
- name: Setup Open MPI
184183
id: setup2
185184
uses: ./
186185
with:
187186
mpi: openmpi
188-
- run: test ${{ steps.setup2.outputs.mpi }} == openmpi
189-
shell: bash
187+
- run: test ${{ steps.setup2.outputs.mpi }} = openmpi
190188
- run: command -v ompi_info
191189

192190
- name: Setup Intel MPI
193191
id: setup3
194192
uses: ./
195193
with:
196194
mpi: intelmpi
197-
- run: test ${{ steps.setup3.outputs.mpi }} == intelmpi
198-
shell: bash
195+
- run: test ${{ steps.setup3.outputs.mpi }} = intelmpi
199196
- run: command -v impi_info
200197

201198
macOS:

0 commit comments

Comments
 (0)