Skip to content

Update testing-matrix.yaml #7

Update testing-matrix.yaml

Update testing-matrix.yaml #7

Workflow file for this run

name: Testing Matrix
on:
workflow_dispatch:
push:
jobs:
basic_test:
strategy:
matrix:
platform: [iOS, macOS]
xcode-version: [14.2, 15.2]
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Xcode Version
run: xcodebuild -version
- name: Show SDKs
run: xcodebuild -showsdks
- name: List Schemes
run: xcodebuild -list
- name: Execute Test
run: xcodebuild test -scheme LiveKit -destination 'platform=macOS,arch=arm64'
# xcodebuild test -scheme LiveKit -sdk iphonesimulator17.2 -destination "OS=17.4,name=iPhone 13 Mini"