Skip to content

Lock the language version for the formula #27

Lock the language version for the formula

Lock the language version for the formula #27

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
- [email protected]
- migrator
steps:
- uses: actions/checkout@v3
- run: brew update
- run: brew tap-new sass/sass
- run: git -C $(brew --repository sass/sass) fetch origin
- run: git -C $(brew --repository sass/sass) checkout "$GITHUB_HEAD_REF"
- run: brew audit --strict --git --online sass/${{ matrix.recipe }}
- run: brew install sass/${{ matrix.recipe }}
- run: brew test sass/${{ matrix.recipe }}
- run: brew uninstall sass/${{ matrix.recipe }}