Merge pull request #25 from SoundBlaster/claude/fix-docc-github-pages… #46
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: Build Verification | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths: | |
| - 'XcodeProject/**' | |
| - '.github/workflows/*.yml' | |
| push: | |
| branches: | |
| - main | |
| - master | |
| paths: | |
| - 'XcodeProject/**' | |
| - '.github/workflows/*.yml' | |
| jobs: | |
| build-ios: | |
| name: Build for iOS | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Show versions | |
| run: | | |
| tuist version || true | |
| xcodebuild -version | |
| swift --version | |
| xcrun simctl list runtimes | grep iOS || true | |
| - name: Select Xcode 26.0 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: "26.0" | |
| - name: Show selected Xcode | |
| run: xcodebuild -version | |
| - name: Build for iOS Simulator | |
| run: | | |
| xcodebuild clean build \ | |
| -project XcodeProject/NewNav.xcodeproj \ | |
| -scheme NewNav \ | |
| -destination 'platform=iOS Simulator,name=iPhone 16' \ | |
| CODE_SIGN_IDENTITY="" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO | |
| build-macos: | |
| name: Build for macOS | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Show versions | |
| run: | | |
| xcodebuild -version | |
| swift --version | |
| - name: Select Xcode 26.0 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: "26.0" | |
| - name: Show selected Xcode | |
| run: xcodebuild -version | |
| - name: Build for macOS | |
| run: | | |
| xcodebuild clean build \ | |
| -project XcodeProject/NewNav.xcodeproj \ | |
| -scheme NewNav \ | |
| -destination 'platform=macOS' \ | |
| CODE_SIGN_IDENTITY="" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO |