Skip to content

update Automation Test Dependency Libs #67

update Automation Test Dependency Libs

update Automation Test Dependency Libs #67

Workflow file for this run

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:
- uses: actions/checkout@v4
- name: ${{ matrix.name }}
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean test | xcpretty