Comment out test run in ios.yml workflow #4
This file contains hidden or 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: iOS CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode version | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Show Xcode version | |
| run: xcodebuild -version | |
| - name: Build project | |
| run: | | |
| xcodebuild \ | |
| -project Chess.xcodeproj \ | |
| -scheme Chess \ | |
| -sdk iphonesimulator \ | |
| -destination 'platform=iOS Simulator,name=iPhone 16' \ | |
| build | |
| # - name: Run tests | |
| # run: | | |
| # xcodebuild \ | |
| # test \ | |
| # -project Chess.xcodeproj \ | |
| # -scheme Chess \ | |
| # -destination 'platform=iOS Simulator,name=iPhone 16' |