test_ci 329 B

1234567891011
  1. #!/bin/bash
  2. set -o pipefail
  3. xcodebuild test \
  4. -workspace CutBox/CutBox.xcworkspace \
  5. -scheme CutBoxUnitTests \
  6. -enableCodeCoverage YES \
  7. -derivedDataPath .build \
  8. | xcpretty -f bin/quickspec_markdown_xcpretty_formatter.rb \
  9. | sed -n -e '/^# Started: CutBoxUnitTests.xctest$/,/^ Executed/p' \
  10. | tee -a "$GITHUB_STEP_SUMMARY"