Skip to content

Commit

Permalink
[feat]: Split reports
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkodes committed Jan 18, 2024
1 parent 9516ed2 commit b8f6ca4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ jobs:
- name: ${{ matrix.name }}
run: |
set -o pipefail && \
xcodebuild -skipPackagePluginValidation -scheme "Networking" -destination "${{ matrix.destination }}" clean -resultBundlePath TestResults test | xcpretty
xcodebuild -skipPackagePluginValidation -scheme "Networking" -destination "${{ matrix.destination }}" clean -resultBundlePath "TestResults-${{ matrix.name }}" test | xcpretty
- uses: kishikawakatsumi/xcresulttool@v1
with:
path: TestResults.xcresult
path: 'TestResults-${{ matrix.name }}.xcresult'
title: '${{ matrix.name }} Test Results'
upload-bundles: 'failure'
if: success() || failure()

0 comments on commit b8f6ca4

Please sign in to comment.