Skip to content

test concurrency

test concurrency #31

Workflow file for this run

name: Audit Formulas
on:
push:
branches:
- master
jobs:
audit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ['lts/*', '*']
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
fetch-depth: 1
- name: Install Homebrew
if: matrix.os == 'ubuntu-latest'
uses: Homebrew/actions/setup-homebrew@master
- name: Update Homebrew
run: brew update
- name: Tap Repository
run: brew tap nsis-dev/makensis
- name: Audit Formulas
run: brew update; brew tap nsis-dev/makensis; for file in ./Formula/*.rb; do echo "Testing $file"; brew audit NSIS-Dev/makensis/$(basename ${file%.rb}) --online & done; wait