workflows/tests: tweak step naming.

This should make it a bit more obvious what is being tested each time.

The homebrew-core/linuxbrew-core style step actually runs the same
command but, as far as I can tell, there's no way of altering the string
that's output as the `name` based on the OS.
This commit is contained in:
Mike McQuaid 2020-08-04 16:04:09 +01:00
parent bbd32a6b3c
commit d8442d175e
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -114,7 +114,7 @@ jobs:
sudo chmod -R g-w,o-w /home/linuxbrew /home/runner /opt
fi
- name: Run brew style
- name: Run brew style on Homebrew/brew
run: brew style --display-cop-names
- name: Run brew man
@ -160,16 +160,21 @@ jobs:
run: brew readall --aliases
- name: Run brew style on homebrew-core
if: matrix.os == 'macOS-latest'
run: brew style --display-cop-names homebrew/core
- name: Run brew style on linuxbrew-core
if: matrix.os == 'ubuntu-latest'
run: brew style --display-cop-names homebrew/core
- name: Run brew style on official taps
run: brew style --display-cop-names homebrew/bundle homebrew/services homebrew/test-bot
- name: Run brew cask style
- name: Run brew cask style on all taps
if: matrix.os == 'macOS-latest'
run: brew cask style
- name: Run brew audit
- name: Run brew audit --skip-style on all taps
run: brew audit --skip-style
- name: Run vale for docs linting