Skip to content

Commit

Permalink
update json
Browse files Browse the repository at this point in the history
  • Loading branch information
MacOMNI committed Nov 12, 2024
1 parent ccaa0c5 commit e126d10
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
run: make deps
- name: Test Coverage
run: make test-coverage
- name: List Coverage Files
run: |
echo "Checking coverage files..."
find . -name "*.lcov" -o -name "*.xml" -o -name "*.json"
- name: Merge and generate coverage report
run: |
echo "Finding profraw files..."
Expand All @@ -94,11 +98,6 @@ jobs:
llvm-cov export -format=lcov -instr-profile=coverage/coverage.profdata "$object_file" >> coverage/coverage.lcov
done
echo "Coverage report generated at coverage/coverage.lcov"
- name: List Coverage Files
run: |
echo "Checking coverage files..."
find . -name "*.lcov" -o -name "*.xml" -o -name "*.json"
- uses: codecov/codecov-action@v4
with:
file: coverage/coverage.lcov
Expand Down

0 comments on commit e126d10

Please sign in to comment.