Skip to content

Commit

Permalink
test.yml: update audit step
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Nov 5, 2024
1 parent b1223b6 commit 4a3ccb3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:

- name: Audit
run: |
for formula in Formula/*.rb; do
formula_name=$(basename $formula .rb)
brew audit --strict --online $formula_name
brew tap-new siafoundation/test --no-git
cp -r Formula/* $(brew --repository)/Library/Taps/siafoundation/homebrew-test/Formula
for file in $(brew --repository)/Library/Taps/siafoundation/homebrew-test/Formula/*
do
brew audit --formula "$(basename ${file%.rb})"
done
brew untap siafoundation/test

0 comments on commit 4a3ccb3

Please sign in to comment.