Skip to content

Commit 0c94727

Browse files
committed
Update tests now that brew audit [path] is deprecated
1 parent 7647b1c commit 0c94727

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yaml

+9-7
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
recipe:
20-
- sass.rb
21-
22-
- migrator.rb
20+
- sass
21+
22+
- migrator
2323

2424
steps:
2525
- uses: actions/checkout@v3
2626
- run: brew update
27-
- run: brew audit --strict --git --online --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
28-
- run: brew install --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
29-
- run: brew test $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
30-
- run: brew uninstall --formula $GITHUB_WORKSPACE/Formula/${{ matrix.recipe }}
27+
- run: brew tap-new sass/sass
28+
- run: git checkout -C $(brew --repository sass/sass) $(git rev-parse HEAD)
29+
- run: brew audit --strict --git --online sass/${{ matrix.recipe }}
30+
- run: brew install sass/${{ matrix.recipe }}
31+
- run: brew test sass/${{ matrix.recipe }}
32+
- run: brew uninstall sass/${{ matrix.recipe }}

0 commit comments

Comments
 (0)