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

Feature/747 fix codecov #748

Closed
wants to merge 9 commits into from
9 changes: 6 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install conan and lcov
run: |
sudo apt-get install -yq --no-install-recommends lcov
sudo pip install conan==1.62.0
sudo pip install conan==1.62.0 coverage
- name: Setup Conan Profile
run: |
conan profile new default --detect
Expand Down Expand Up @@ -67,7 +67,10 @@ jobs:
source deactivate_conanrun.sh
lcx="lcov --output-file=coverage.info " && for i in `find . -name "*.info.cleaned"`; do lcx+=" --add-tracefile=$i"; done && $lcx
- name: Codecov
uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c #v4.4.1
if: github.repository_owner == 'apache'
with:
files: build/coverage.info
file: build/coverage.info
disable_search: true
name: codecov-celix
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
coverage:
precision: 2
round: down
range: "68...100"
range: "68...100"
Loading