update Automation Test Dependency Libs #70
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
paths-ignore: | |
- 'docs/**' | |
- 'iOSTestApp/**' | |
- 'tvOSTestApp/**' | |
- 'Example/**' | |
- 'TestApp/**' | |
- 'LICENSE' | |
- '*.md' | |
concurrency: | |
group: PR_${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: "CocoaPods linting" | |
environment: PR | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Updating Cocoapods | |
run: gem install cocoapods | |
- name: Updating CocoaPods repo | |
run: pod repo update | |
- name: Pod linting | |
run: pod lib lint --fail-fast --verbose --allow-warnings | |
SPM: | |
name: "Build SPM" | |
environment: PR | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- destination: "OS=17.2,name=iPhone 15" | |
name: "iOS" | |
scheme: "PlayKit-Package" | |
- destination: "OS=17.0,name=Apple TV" | |
name: "tvOS" | |
scheme: "PlayKit-Package" | |
steps: | |
- name: Force Xcode 11 | |
run: sudo xcode-select -switch /Applications/Xcode_15.2.app | |
- uses: actions/checkout@v4 | |
- name: ${{ matrix.name }} | |
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean test | xcpretty | |