From e91561ebe1c507f9f73f8f524297061a0ab209a1 Mon Sep 17 00:00:00 2001 From: Diogo Autilio Date: Tue, 14 Nov 2023 08:55:01 -0300 Subject: [PATCH] Set Codecov coverage path --- .github/workflows/Testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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