From 79073178f12bee705fb8da920c75557c3540a6b4 Mon Sep 17 00:00:00 2001 From: Sam Ford <1584702+samford@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:54:10 -0500 Subject: [PATCH] workflows/tests: add step names This adds step names in areas where we recently made changes to the `tests.yml` workflow. Without a `name` value, the first line of `run` is used, which is the `shellcheck` comments in these areas. Using an explicit name makes it easier to identify these steps at a glance. --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8f2f9ed1b8896..352145050f899 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -232,7 +232,8 @@ jobs: bottles-directory: ${{ env.BOTTLES_DIR }} cleanup: ${{ matrix.cleanup }} - - id: brew-test-bot-formulae + - name: Test formulae + id: brew-test-bot-formulae run: | # shellcheck disable=SC2086 brew test-bot $TEST_BOT_FORMULAE_ARGS \ @@ -365,7 +366,8 @@ jobs: cleanup: ${{ matrix.cleanup }} download-bottles: true - - run: | + - name: Test dependents + run: | # shellcheck disable=SC2086 brew test-bot $TEST_BOT_DEPENDENTS_ARGS \ --testing-formulae="$TESTING_FORMULAE" \