There was an error while loading. Please reload this page.
1 parent 447a566 commit 01ce7e2Copy full SHA for 01ce7e2
1 file changed
.github/workflows/test.yml
@@ -6,8 +6,6 @@ on:
6
- main
7
- master
8
pull_request:
9
- schedule:
10
- - cron: "17 4 * * 6"
11
workflow_dispatch:
12
13
permissions: {}
@@ -60,7 +58,12 @@ jobs:
60
58
run: brew test-bot --only-setup
61
59
62
- name: Check tap syntax
63
- run: brew test-bot --only-tap-syntax
+ run: |
+ tap="${GITHUB_REPOSITORY/homebrew-/}"
+ tap_path="${{ steps.set-up-homebrew.outputs.repository-path }}"
64
+ brew style "$tap_path/Formula"
65
+ brew readall --aliases --os=all --arch=all "$tap"
66
+ brew audit --except=installed --tap="$tap"
67
68
- name: Test changed formulae
69
if: github.event_name == 'pull_request'
0 commit comments