We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a88b49 commit 1b101f0Copy full SHA for 1b101f0
.github/workflows/build-and-test.yml
@@ -48,10 +48,16 @@ jobs:
48
-enableCodeCoverage YES \
49
-parallel-testing-enabled YES \
50
-parallel-testing-worker-count 4 \
51
+ -resultBundlePath TestResults.xcresult \
52
CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
53
54
- name: CocoaPods lint
55
run: pod lib lint
56
57
- name: Upload coverage report to codecov.io
- run: bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'
58
+ run: bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'
59
+
60
+ - uses: kishikawakatsumi/xcresulttool@v1
61
+ with:
62
+ path: TestResults.xcresult
63
+ if: success() || failure()
0 commit comments