Skip to content

Commit 52ee70c

Browse files
committed
Fixups
1 parent db56241 commit 52ee70c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,10 @@ jobs:
107107
${{ runner.os }}-dub-cache-${{ matrix.dc }}-
108108
- name: Build / test (nightly compiler; no coverage)
109109
if: contains(matrix.dc, 'beta') || contains(matrix.dc, 'master')
110-
run: |
111-
dub test --arch=$ARCH --combined
110+
run: dub test --arch=$ARCH --combined
112111
shell: bash
113112
- name: Build / test (stable compiler; with coverage)
114-
if: !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master'))
113+
if: ${{ !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master')) }}
115114
run: |
116115
dub test --arch=$ARCH --build=unittest-cov
117116
dub test --arch=$ARCH --combined
@@ -169,11 +168,10 @@ jobs:
169168
${{ runner.os }}-dub-cache-${{ matrix.arch }}-${{ matrix.dc }}-
170169
- name: Build / test (nightly compiler; no coverage)
171170
if: contains(matrix.dc, 'beta') || contains(matrix.dc, 'master')
172-
run: |
173-
dub test --arch=$ARCH --combined
171+
run: dub test --arch=$ARCH --combined
174172
shell: bash
175173
- name: Build / test (stable compiler; with coverage)
176-
if: !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master'))
174+
if: ${{ !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master')) }}
177175
run: |
178176
dub test --arch=$ARCH --build=unittest-cov
179177
dub test --arch=$ARCH --combined
@@ -236,12 +234,13 @@ jobs:
236234
dub test --arch=$ARCH --build=unittest-ci -c ci-test
237235
shell: bash
238236
- name: Build / test (stable compiler; with coverage)
239-
if: !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master'))
237+
if: ${{ !(contains(matrix.dc, 'beta') || contains(matrix.dc, 'master')) }}
240238
run: |
241239
dub test --arch=$ARCH --build=unittest-cov-ci -c ci-bignum-test
242240
dub test --arch=$ARCH --build=unittest-cov-ci -c ci-core-test
243241
dub test --arch=$ARCH --build=unittest-cov-ci -c ci-ndslice-test
244242
dub test --arch=$ARCH --build=unittest-cov-ci -c ci-test
243+
shell: bash
245244
- name: Upload coverage data
246245
uses: codecov/codecov-action@v5
247246
with:

0 commit comments

Comments
 (0)