Skip to content

Lock the language version for the formula #21

Lock the language version for the formula

Lock the language version for the formula #21

Workflow file for this run

name: Testing of Homebrew recipes
on:
push:
branches: [main, feature.*]
tags: ['**']
pull_request:
jobs:
test:
name: "Verify ${{ matrix.recipe }}"
runs-on: macos-latest
env: {HOMEBREW_NO_INSTALL_CLEANUP: 1}
strategy:
fail-fast: false
matrix:
recipe:
- sass.rb
- dart-sass-embedded@1.62.1.rb
- migrator.rb
steps:
- uses: actions/checkout@v3
- run: brew update
- run: brew audit --strict --git --online --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
- run: brew install --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
- run: brew test $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
- run: brew uninstall --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}