Skip to content

Commit 605ead9

Browse files
Store unit test report
1 parent 4419f46 commit 605ead9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ios.yml

+12
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,17 @@ jobs:
118118
-destination "platform=iOS Simulator,name=iPhone 15" \
119119
-clonedSourcePackagesDirPath "$SOURCE_PACKAGES_PATH" \
120120
-disableAutomaticPackageResolution \
121+
-resultBundlePath xcode-test-report \
121122
test 2>&1 | xcbeautify
122123
working-directory: ios/
124+
125+
- name: Archive test report
126+
if: always()
127+
run: zip -r test-report.zip ios/xcode-test-report.xcresult
128+
129+
- name: Store test report artifact
130+
if: always()
131+
uses: actions/upload-artifact@v4
132+
with:
133+
name: test-report
134+
path: test-report.zip

0 commit comments

Comments
 (0)