swift_version changes - deprecated. #103
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: CI - Tests | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
- 'releases/**' | |
workflow_call: | |
jobs: | |
Tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: create Podfile | |
run: bash .github/bash_scripts/podfile_creation.sh | |
- name: CocoaPod Install | |
run: pod install | |
- name: Test | |
run: xcodebuild test -scheme segment-appsflyer-ios -workspace segment-appsflyer-ios.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.4' | xcpretty && exit ${PIPESTATUS[0]} |