Skip to content

version 1 completed

version 1 completed #4

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
watchos-build:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode 16.x
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.x"
- name: Build watchOS app (no tests)
run: |
set -o pipefail
xcodebuild \
-project SleepTrigger.xcodeproj \
-scheme "SleepTriggerWatchOS Watch App" \
-destination "generic/platform=watchOS Simulator" \
CODE_SIGNING_ALLOWED=NO \
clean build