Trigger dependency chain #77
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: Eureka CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
iOS: | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
destination: ['platform=iOS Simulator,OS=16.0,name=iPhone 14'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '14.0.1' | |
- name: Build and test | |
run: set -o pipefail && xcodebuild -project Eureka.xcodeproj -scheme 'Eureka' -sdk 'iphonesimulator' -destination "${{ matrix.destination }}" -configuration Debug test | xcpretty |