Merge pull request #30 from Adyen/readme-support-link #140
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 Swift Package Manager Integration | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
SPM: | |
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: Resolve dependencies | |
run: | | |
brew update | |
brew install xcodegen | |
- name: Test Swift Package Manager Integration | |
run: | | |
Scripts/test-SPM-integration.sh |