-
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.
Update tests now that
brew audit [path]
is deprecated
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 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,16 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
recipe: | ||
- sass.rb | ||
- [email protected].rb | ||
- migrator.rb | ||
- sass | ||
- [email protected] | ||
- 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: git -C $(brew --repository sass/sass) checkout $(git rev-parse HEAD) | ||
- 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 }} |