Skip to content

IOS-1269 feat: add AddComponentModifier Macro #26

IOS-1269 feat: add AddComponentModifier Macro

IOS-1269 feat: add AddComponentModifier Macro #26

Workflow file for this run

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