-
Notifications
You must be signed in to change notification settings - Fork 39
37 lines (28 loc) · 779 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (28 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Swift 6.0
uses: swift-actions/setup-swift@v2
with:
swift-version: "6.0"
- name: Build debug
run: swift build
- name: Build release
run: swift build -c release
- name: Verify version output
run: .build/debug/kmsg --version
- name: Run release automation tests
run: python3 -m unittest tests.test_sync_homebrew_tap tests.test_release_workflow
- name: Validate OpenClaw MCP server script
run: python3 -m py_compile tools/kmsg-mcp.py tools/sync_homebrew_tap.py