-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from sass/lock-language-version
Lock the language version for the formula
- Loading branch information
Showing
3 changed files
with
22 additions
and
85 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,20 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
recipe: | ||
- sass.rb | ||
- [email protected] | ||
- migrator.rb | ||
- sass | ||
- migrator | ||
|
||
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 }} | ||
- run: brew tap-new sass/sass | ||
- run: brew --repository sass/sass | ||
- run: | | ||
path="$(brew --repository sass/sass)" | ||
rm -rf "$path" | ||
ln -s "$(pwd)" "$path" | ||
# TODO: Add --online once https://github.com/Homebrew/brew/pull/16626 is fixed | ||
- run: brew audit --strict --git 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 }} |
This file was deleted.
Oops, something went wrong.
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