Skip to content

Commit f0df6d7

Browse files
committed
[ ci ] Add readable names for steps
1 parent 28ff829 commit f0df6d7

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci-deptycheck.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ jobs:
238238
- name: Sleep a random bit
239239
run: sleep "$(shuf -i 0-10 -n 1)"
240240

241-
- run: pack test deptycheck "${TEST_SET}"
241+
- name: Run tests for ${{ matrix.test_set }}
242+
run: pack test deptycheck "${TEST_SET}"
242243
env:
243244
TEST_SET: ${{ matrix.test_set }}
244245

@@ -296,5 +297,7 @@ jobs:
296297
- name: Sleep a random bit
297298
run: sleep "$(shuf -i 0-10 -n 1)"
298299

299-
- run: pack build "${EXAMPLE_NAME}"
300-
- run: pack test "${EXAMPLE_NAME}"
300+
- name: Build ${{ matrix.example }}
301+
run: pack build "${EXAMPLE_NAME}"
302+
- name: Test ${{ matrix.example }}
303+
run: pack test "${EXAMPLE_NAME}"

0 commit comments

Comments
 (0)