chore(deps): update adyen/adyen-swift-public-api-diff action to v0.5.0 #7046
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: Test Cocoapods Integration | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- develop | |
jobs: | |
pods: | |
runs-on: macos-14-xlarge | |
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.3' | |
- name: Lint Cocoapods | |
run: | | |
brew update | |
brew install xcodegen | |
gem install cocoapods -v 1.10.2 | |
pod repo update | |
pod lib lint Adyen.podspec --allow-warnings --verbose | |
- name: Test Cocoapods Integration | |
run: | | |
Scripts/test-CocoaPods-integration.sh -w | |
Scripts/test-CocoaPods-integration.sh |