1 parent a206aff commit 59b7f62Copy full SHA for 59b7f62
1 file changed
.github/workflows/homebrew-smoke.yml
@@ -0,0 +1,23 @@
1
+name: Homebrew Smoke Test
2
+
3
+on:
4
+ workflow_dispatch:
5
+ workflow_run:
6
+ workflows:
7
+ - Release
8
+ types:
9
+ - completed
10
11
+permissions: {}
12
13
+jobs:
14
+ install:
15
+ if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
16
+ runs-on: macos-latest
17
+ steps:
18
+ - name: Install from tap
19
+ run: brew install shadowfish07/tap/heybox
20
+ - name: Verify global command
21
+ run: |
22
+ command -v heybox
23
+ heybox --version
0 commit comments