Skip to content
Snippets Groups Projects
Unverified Commit d8442d17 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

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.
parent bbd32a6b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment