We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 682cffd commit 5f50869Copy full SHA for 5f50869
.github/workflows/swift-build.yml
@@ -32,4 +32,6 @@ jobs:
32
with:
33
xcode-version: '${{ matrix.ios.xcode }}'
34
- name: Build and Test (iOS ${{ matrix.ios.version }})
35
- run: xcodebuild build -scheme GreedyKit -destination 'platform=iOS Simulator,OS=${{ matrix.ios.version }},name=${{ matrix.ios.device }}' test | xcbeautify
+ run: |
36
+ set -o pipefail
37
+ xcodebuild build -scheme GreedyKit -destination 'platform=iOS Simulator,OS=${{ matrix.ios.version }},name=${{ matrix.ios.device }}' test | xcbeautify
0 commit comments