Skip to content

Bump Demo minimum deployment targets (#164) #719

Bump Demo minimum deployment targets (#164)

Bump Demo minimum deployment targets (#164) #719

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
schedule:
- cron: "3 3 * * 2" # 3:03 AM, every Tuesday
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
macOS:
name: ${{ matrix.platform }} (Swift ${{ matrix.swift }})
runs-on: macos-15
strategy:
fail-fast: false
matrix:
platform:
- iOS
- mac-catalyst
- tvOS
swift:
- "6.0" # Xcode 16.2
- "6.1" # Xcode 16.4
- "6.2" # Xcode 26.0
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Disable Macro Fingerprint Validation
run: |
defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES
- name: Select Xcode version
uses: mxcl/xcodebuild@v3
with:
swift: ~${{ matrix.swift }}
action: none
- name: List Runtimes
run: xcrun simctl list runtimes
- if: matrix.platform != 'mac-catalyst'
name: Download Required Runtimes
run: xcodebuild -downloadPlatform ${{ matrix.platform }}
- name: Test Library
uses: mxcl/xcodebuild@v3
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: test
workspace: SwiftUINavigationTransitions.xcworkspace
scheme: SwiftUINavigationTransitions
- name: Build Examples/Demo
uses: mxcl/xcodebuild@v3
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: build
workspace: SwiftUINavigationTransitions.xcworkspace
scheme: Demo