Lock the language version for the formula #29
Workflow file for this run
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: 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) remote add -f ci "file://`pwd`" | |
- 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 }} |