Skip to content

Lock the language version for the formula #36

Lock the language version for the formula

Lock the language version for the formula #36

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: brew --repository sass/sass
- run: |
path="$(brew --repository sass/sass)"
rm -rf "$path"
ln -s "$(pwd)" "$path"
- run: brew audit --strict --git --online sass/sass/${{ matrix.recipe }}
- run: brew install sass/sass/${{ matrix.recipe }}
- run: brew test sass/sass/${{ matrix.recipe }}
- run: brew uninstall sass/sass/${{ matrix.recipe }}