Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Aug 23, 2024
1 parent 1740baf commit 862e1ae
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 @@ -84,13 +84,15 @@ jobs:
path: |
~/Library/Developer/Xcode/DerivedData/Parse-*/Logs/Test
~/Library/Developer/Xcode/DerivedData/**/Logs/Build
- name: Parse Xcode test results for code coverage
- name: Install test parsing dependencies
# Workaround as codecov cannot parse xcresult files;
# https://github.com/codecov/uploader/issues/1078
# https://github.com/codecov/codecov-action/issues/1367
run: |
echo COVERAGE_PATH=build/coverage.xml >> $GITHUB_ENV
brew install a7ex/homebrew-formulae/xcresultparser
- name: Parse Xcode test results for code coverage
run: |
echo COVERAGE_PATH=build/coverage.xml >> $GITHUB_ENV
set -o pipefail && \
xcresultparser --output-format cobertura \
"$TEST_RESULTS" >"$COVERAGE_PATH"
Expand Down

0 comments on commit 862e1ae

Please sign in to comment.