Mercurial > public > stock-charts
view .github/workflows/swift.yml @ 39:df4ddf405332
Update swift.yml
committer: GitHub <noreply@github.com>
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sat, 01 May 2021 11:09:31 +0200 |
parents | 6c08380e10ae |
children | 80ba8b8f0fcc |
line wrap: on
line source
name: Swift on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Build for iOS run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme IndexedDataStore -destination "platform=iOS Simulator,OS=latest,name=iPhone 12" | xcpretty - name: Run iOS tests run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -scheme IndexedDataStore -destination "platform=iOS Simulator,OS=latest,name=iPhone 12" | xcpretty