Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Актуализация замеров покрытия #184

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,17 @@ jobs:
run: |
cmake --build Build/burst --target coverage

- name: Publish coverage to codecov
- name: Prepare coverage report
run: |
lcov --version
lcov --capture --directory Build/burst --output-file coverage.info
lcov --remove coverage.info "/usr/*" --output-file coverage.info
lcov --remove coverage.info "*/test/*" --output-file coverage.info
bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"

- name: Publish coverage report
uses: codecov/codecov-action@v4
with:
file: coverage.info
token: ${{secrets.CODECOV}}
disable_search: true
verbose: true
Loading