-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 750 Bytes
/
Copy pathci.yml
File metadata and controls
36 lines (28 loc) · 750 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
name: Build & Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build-and-test:
name: Build & Tests
runs-on: macos-26
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Select Xcode 26
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '26.6'
- name: Install Tools (XcodeGen & xcbeautify)
run: brew install xcodegen xcbeautify
- name: Generate Xcode Project
run: xcodegen generate
- name: Run Full Test Suite (0 skips)
run: ./scripts/test.sh
- name: Build App (Release)
run: ./scripts/package_app.sh