diff --git a/.github/workflows/Testing.yml b/.github/workflows/Testing.yml index 462de68e..4bcbcf4c 100755 --- a/.github/workflows/Testing.yml +++ b/.github/workflows/Testing.yml @@ -78,9 +78,13 @@ jobs: xcodebuild -workspace ${{ matrix.workspace }} \ -scheme ${{ matrix.scheme }} \ -destination '${{ matrix.destination }}' \ - -resultBundlePath SwdUnitTests.xcresult \ + -resultBundlePath ./coverage/SwdUnitTests.xcresult \ -enableCodeCoverage YES \ test | xcpretty && exit ${PIPESTATUS[0]} - name: Upload coverage to Codecov uses: codecov/codecov-action@v3.1.4 + with: + directory: ./coverage/ + files: ./coverage/SwdUnitTests.xcresult + verbose: true