Update dependency io.github.koalaplot:koalaplot-core to v0.12.0 #654
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: pull_request | |
| # Cancel any current or previous job from the same PR | |
| concurrency: | |
| group: ios-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 24 | |
| - name: Set Xcode Version 26.3 | |
| shell: bash | |
| run: | | |
| xcodes select 26.3 | |
| - name: Build iOS app | |
| run: xcodebuild -allowProvisioningUpdates -workspace iosApp/iosApp.xcodeproj/project.xcworkspace -configuration Debug -scheme iosApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' | |