Configure Renovate #136
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: | |
- main | |
- develop | |
jobs: | |
pods: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: n1hility/cancel-previous-runs@v2 | |
with: | |
token: ${{ secrets.MANUAL_ACTION_TOKEN }} | |
- name: Select latest Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Test Cocoapods Integration | |
run: | | |
gem install cocoapods | |
pod lib lint AdyenNetworking.podspec --allow-warnings | |
Scripts/test-CocoaPods-integration.sh |