Skip to content

Commit

Permalink
workflows/tests: add step names
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
samford committed Dec 16, 2024
1 parent 27daa06 commit 7907317
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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" \
Expand Down

0 comments on commit 7907317

Please sign in to comment.