Try uploading test results to Codecov. (#3266)

This commit is contained in:
Doug
2024-09-12 07:09:15 +01:00
committed by GitHub
parent 2393fc3694
commit c9d77de71c
3 changed files with 34 additions and 1 deletions

View File

@@ -70,3 +70,13 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
flags: integrationtests
- name: Collect test results
if: ${{ !cancelled() }}
run: xcresultparser -q -o junit -p $(pwd) fastlane/test_output/IntegrationTests.xcresult > fastlane/test_output/integration-junit.xml
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: integrationtests