mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2026-01-07 10:40:21 +08:00
21 lines
473 B
YAML
21 lines
473 B
YAML
name: Reproduce Simulator Destination Error
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macos-14
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run xcodebuild with invalid simulator
|
|
run: |
|
|
xcodebuild -project Test.xcodeproj \
|
|
-scheme DEV \
|
|
-destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=latest' \
|
|
-testPlan UnitTests \
|
|
build-for-testing
|