diff --git a/.github/workflows/run-tests-WaterfallGridSample.yml b/.github/workflows/run-tests-WaterfallGridSample.yml index 5eb4975..810cd2c 100644 --- a/.github/workflows/run-tests-WaterfallGridSample.yml +++ b/.github/workflows/run-tests-WaterfallGridSample.yml @@ -36,5 +36,17 @@ jobs: - name: Install xcpretty run: gem install xcpretty - - name: Build and run tests for destination + - name: Build and run tests (iOS) run: xcodebuild test -scheme WaterfallGrid -destination "platform=iOS Simulator,OS=17.5,name=iPhone 15 Pro" | xcpretty + + - name: Build (macOS) + run: xcodebuild build -scheme WaterfallGrid -destination "platform=macOS,name=My Mac" | xcpretty + + - name: Build (Mac Catalyst) + run: xcodebuild build -scheme WaterfallGrid -destination "platform=macOS,variant=Mac Catalyst,name=My Mac" | xcpretty + + - name: Build (tvOS) + run: xcodebuild build -scheme WaterfallGrid -destination "platform=tvOS Simulator,OS=17.5,name=Apple TV" | xcpretty + + - name: Build (watchOS) + run: xcodebuild build -scheme WaterfallGrid -destination "platform=watchOS Simulator,OS=10.5,name=Apple Watch Ultra 2 (49mm)" | xcpretty