Skip to content

Commit eab1a2b

Browse files
tdrhqclaude
andcommitted
Pipe xcodebuild output through xcbeautify for cleaner CI logs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent fc25226 commit eab1a2b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15+
- name: Install xcbeautify
16+
run: brew install xcbeautify
17+
1518
- name: Run tests
1619
run: |
20+
set -o pipefail
1721
xcodebuild test \
1822
-scheme SampleWorkshopApp \
1923
-destination 'platform=iOS Simulator,name=iPhone 16' \
20-
-resultBundlePath TestResults.xcresult
24+
-resultBundlePath TestResults.xcresult \
25+
2>&1 | xcbeautify

0 commit comments

Comments
 (0)