Fixing reconnect issues #24
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 | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| run: sudo xcode-select -switch /Applications/Xcode_16.4.app | |
| - name: Xcode version | |
| run: /usr/bin/xcodebuild -version | |
| - name: Build and Test iOS | |
| run: xcodebuild clean build -project UltraKiosk.xcodeproj -scheme "UltraKiosk" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPad (A16),OS=18.6" ONLY_ACTIVE_ARCH=YES SWIFT_TREAT_WARNINGS_AS_ERRORS=NO OTHER_SWIFT_FLAGS="-D ED_SKIP_SWIFT_FORMAT" | |