ci: add macOS app build

This commit is contained in:
Peter Steinberger
2025-12-06 03:56:49 +01:00
parent a8932c2c25
commit 19677f0622

View File

@@ -49,3 +49,21 @@ jobs:
- name: Build - name: Build
run: pnpm build run: pnpm build
macos-app:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Show toolchain
run: |
sw_vers
xcodebuild -version
swift --version
- name: Swift build (release)
run: swift build --package-path apps/macos --configuration release
- name: Swift tests
run: swift test --package-path apps/macos --parallel