Skip to content

Commit 59b7f62

Browse files
committed
ci: smoke test Homebrew installation
1 parent a206aff commit 59b7f62

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)