# HG changeset patch # User Dennis C. M. # Date 1619860171 -7200 # Node ID df4ddf405332535565228658b6e452ec974a916b # Parent 6c08380e10aef8d61f10249e9985fdd750f6cd98 Update swift.yml committer: GitHub diff -r 6c08380e10ae -r df4ddf405332 .github/workflows/swift.yml --- a/.github/workflows/swift.yml Sat May 01 10:42:01 2021 +0200 +++ b/.github/workflows/swift.yml Sat May 01 11:09:31 2021 +0200 @@ -13,7 +13,7 @@ steps: - uses: actions/checkout@v2 - - name: Build - run: swift build -v - - name: Run tests - run: swift test -v + - 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