adjust destination #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Xcode - Build, Analyze and Test | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
name: Build, analyze and test default scheme using xcodebuild command | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build, Analyze and Test | |
run: xcodebuild clean build analyze test -project ACActionCable.xcodeproj -scheme ACActionCable-Package -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]} |