Skip to content

Commit

Permalink
Update tests now that brew audit [path] is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Feb 8, 2024
1 parent 7647b1c commit 0c94727
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ jobs:
fail-fast: false
matrix:
recipe:
- sass.rb
- dart-sass-embedded@1.62.1.rb
- migrator.rb
- sass
- dart-sass-embedded@1.62.1
- 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 checkout -C $(brew --repository sass/sass) $(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 }}

0 comments on commit 0c94727

Please sign in to comment.