Update Adyen/adyen-swift-public-api-diff action to v0.6.0 #1812
This file contains 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: 📚 Library Evolution Compatibility | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Verify | |
runs-on: macos-14-xlarge # Apple Silicon Runner | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: n1hility/cancel-previous-runs@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Select latest Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.1' | |
- name: "xcodebuild clean archive BUILD_LIBRARY_FOR_DISTRIBUTION=YES" | |
run: | | |
xcodebuild -version | |
xcodebuild clean archive -project "${project}" -scheme "${scheme}" -destination 'generic/platform=iOS Simulator' -archivePath "${archivePath}" -skipPackagePluginValidation SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES | |
./Scripts/validate-library-evolution.swift "${archivePath}" "${validationProjectName}" | |
cd ${validationProjectName} | |
xcodebuild clean build -scheme "${validationProjectName}" -destination 'generic/platform=iOS Simulator' | xcpretty --utf --color && exit ${PIPESTATUS[0]} | |
env: | |
project: 'Adyen.xcodeproj' | |
archivePath: 'LibraryEvolutionValidationArchive.xcarchive' | |
scheme: 'AdyenDropIn' | |
validationProjectName: 'LibraryEvolutionValidation' |