test concurrency #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |