From 4879cf1b48fdd2d8f3b6c3277e49474909edfce4 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 3 Mar 2021 00:37:27 +0000 Subject: [PATCH] workflows/tests: test brew audit of homebrew-core on Linux --- .github/workflows/tests.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cd8dd376fe..4d78251af0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -107,6 +107,11 @@ jobs: - name: Run brew style on homebrew-core run: brew style --display-cop-names homebrew/core + - name: Run brew audit --skip-style on homebrew-core + run: brew audit --skip-style --tap=homebrew/core + env: + HOMEBREW_SIMULATE_MACOS_ON_LINUX: 1 + - name: Run brew style on official taps run: | brew style --display-cop-names homebrew/bundle \ @@ -270,8 +275,12 @@ jobs: - name: Run brew readall on all taps run: brew readall --aliases - - name: Run brew audit --skip-style on all taps - run: brew audit --skip-style + - name: Run brew audit --skip-style on Cask taps + run: | + brew audit --skip-style --tap=homebrew/cask + brew audit --skip-style --tap=homebrew/cask-drivers + brew audit --skip-style --tap=homebrew/cask-fonts + brew audit --skip-style --tap=homebrew/cask-versions - name: Install brew tests dependencies run: |