Advertisement
Badal_hs_shah

check.yaml

Jan 19th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.55 KB | None | 0 0
  1. name: Promote Develop Build
  2.  
  3. on:
  4.   pull_request:
  5.     branches:
  6.      - main
  7.     types: [opened, ready_for_review, synchronize]
  8. jobs:
  9.   tests:
  10.     runs-on: macos-11
  11.     timeout-minutes: 20
  12.     steps:
  13.         - name: Git - Checkout
  14.           uses: actions/checkout@v2
  15.         - name: Setup - Xcode
  16.           run: sudo xcode-select -s /Applications/Xcode_13.2.1.app
  17.         # - name: Unit Tests
  18.         #   run: xcodebuild test -scheme SurveyEngine -destination 'platform=iOS Simulator,name=iPhone 13,OS=15.2' | xcpretty && exit ${PIPESTATUS[0]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement