remove failing tests for now #12
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: Testing Matrix | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
basic_test: | |
strategy: | |
fail-fast: false | |
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=${{ matrix.platform }}' | |
# xcodebuild test -scheme LiveKit -sdk iphonesimulator17.2 -destination "OS=17.4,name=iPhone 13 Mini" |