Skip to content

update audit command #26

update audit command

update audit command #26

Workflow file for this run

name: Audit Formulas
on:
push:
branches:
- master
jobs:
audit:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Update Homebrew
run: brew update
- name: Audit Formulas
run: for file in ./Formula/*.rb; do echo "Testing $file"; brew audit NSIS-Dev/makensis/$(basename ${file%.rb}) --online; done