From 8f4188926af4198f9dfb3bf9264929208234cc01 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 31 Jul 2020 12:51:07 +0100 Subject: [PATCH] workflows/tests: run brew audit on homebrew/core. Run brew audit without Git, style (RuboCop) or online checks for homebrew/core. This is fast enough now (takes under a minute on my machine) and these are the audit failures we should never accept failures on (or introduce new ones without fixing them first). --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fa26431353..7e573f2db2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -106,6 +106,9 @@ jobs: # don't care about `brew cask style` here. brew untap adoptopenjdk/openjdk + + # don't care about `brew audit` here. + brew untap mongodb/brew else # Fix permissions for 'brew tests' sudo chmod -R g-w,o-w /home/linuxbrew /home/runner /opt @@ -166,6 +169,9 @@ jobs: if: matrix.os == 'macOS-latest' run: brew cask style + - name: Run brew audit + run: brew audit --skip-style + - name: Run vale for docs linting run: | brew install vale