Architecture + events refactor #222
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: Build and Run XCTests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
include: | |
- xcode: "14.3.1" | |
ios: "16.4" | |
device: "iPhone 14" | |
name: Parra Tests on iOS (${{ matrix.ios }}) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app && /usr/bin/xcodebuild -version | |
- name: Run Parra Unit Tests | |
run: xcodebuild test -scheme Parra -project Parra.xcodeproj -sdk iphonesimulator -testPlan Parra -destination 'platform=iOS Simulator,name=${{ matrix.device }},OS=${{ matrix.ios }}' | xcpretty && exit ${PIPESTATUS[0]} |