From 19677f0622f6e28d046087ce3943460f482be9a1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 6 Dec 2025 03:56:49 +0100 Subject: [PATCH] ci: add macOS app build --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd20904c9..ea98e8778 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,3 +49,21 @@ jobs: - name: 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