60ac62448763f2bda93b1bf55ac84eb6861c8f2d
- Replace #if os(watchOS) with #if canImport(WatchKit) for all .accessoryCorner usages. When the CI builds with forced iphoneos SDK, os(watchOS) evaluates to true (target platform is watchOS) but the SDK doesn't have WatchKit, so accessoryCorner is unavailable. canImport(WatchKit) correctly checks SDK availability rather than target platform. - Wrap CornerComplicationView struct and its preview in #if canImport(WatchKit) with @available(watchOS 10.0, *) annotation. - Change CI build from -target TabataGo -sdk iphoneos to -scheme TabataGo (without -sdk). This lets xcodebuild pick the correct SDK per target: iphoneos for iOS, watchos for watchOS. The scheme already exists in project.yml.
Description
No description provided