We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ff829 commit f0df6d7Copy full SHA for f0df6d7
1 file changed
.github/workflows/ci-deptycheck.yml
@@ -238,7 +238,8 @@ jobs:
238
- name: Sleep a random bit
239
run: sleep "$(shuf -i 0-10 -n 1)"
240
241
- - run: pack test deptycheck "${TEST_SET}"
+ - name: Run tests for ${{ matrix.test_set }}
242
+ run: pack test deptycheck "${TEST_SET}"
243
env:
244
TEST_SET: ${{ matrix.test_set }}
245
@@ -296,5 +297,7 @@ jobs:
296
297
298
299
- - run: pack build "${EXAMPLE_NAME}"
300
- - run: pack test "${EXAMPLE_NAME}"
+ - name: Build ${{ matrix.example }}
301
+ run: pack build "${EXAMPLE_NAME}"
302
+ - name: Test ${{ matrix.example }}
303
+ run: pack test "${EXAMPLE_NAME}"
0 commit comments