Skip to content

Commit f4e7901

Browse files
dev-jossclaude
andcommitted
ci: add GitHub Actions workflow for macOS build
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b68931d commit f4e7901

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [master, feature/**]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build-macos:
11+
runs-on: macos-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Configure
16+
run: cmake -B build
17+
18+
- name: Build
19+
run: cmake --build build

0 commit comments

Comments
 (0)