diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 8d1cfc7..2a02a49 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -21,9 +21,11 @@ jobs: - name: Build run: | + set -eo pipefaile ./gradlew shared:assembleSharedReleaseXCFramework - xcodebuild build-for-testing -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" + xcodebuild build-for-testing -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" | xcbeautify - name: Test run: | - xcodebuild test-without-building -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" + set -eo pipefaile + xcodebuild test-without-building -project $project -scheme $scheme -destination "platform=iOS Simulator,name=$device" | xcbeautify