Skip to content

Commit 35a1d84

Browse files
committed
Add *basic* CI workflow for checking script/setup
1 parent 86203f5 commit 35a1d84

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push
5+
6+
jobs:
7+
build:
8+
runs-on: macos-14
9+
10+
steps:
11+
- name: Checkout repository
12+
uses: actions/checkout@v4
13+
14+
- name: Install Homebrew
15+
run: NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
16+
17+
- name: Verify Homebrew installation
18+
run: brew --version
19+
20+
- run: script/setup

0 commit comments

Comments
 (0)