IOS-1269 feat: add AddComponentModifier Macro #23
Workflow file for this run
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: CI (SampleApp) | |
| on: | |
| pull_request: | |
| paths: | |
| - "Package.swift" | |
| - "Package.resolved" | |
| - "Sources/**" | |
| - "Tests/**" | |
| - "Examples/KarrotListKitSampleApp/**" | |
| workflow_dispatch: | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}-${{ github.job }}" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-15 | |
| defaults: | |
| run: | |
| working-directory: Examples/KarrotListKitSampleApp | |
| env: | |
| SCHEME: KarrotListKitSampleApp | |
| DESTINATION: platform=iOS Simulator,name=iPhone 16,OS=18.5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Xcode Version | |
| run: sudo xcode-select --switch /Applications/Xcode_16.4.app | |
| shell: bash | |
| - name: Set Swift Syntax Prebuilts | |
| run: | | |
| defaults write com.apple.dt.Xcode IDEPackageEnablePrebuilts YES | |
| - name: Run `build-for-testing` | |
| run: | | |
| set -o pipefail && xcodebuild build-for-testing \ | |
| -scheme "$SCHEME" \ | |
| -destination "$DESTINATION" \ | |
| -configuration Debug \ | |
| | xcbeautify --renderer github-actions |