ci: add codecov github action #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request, push] | |
name: Code Coverage | |
jobs: | |
coverage_report: | |
name: Generate coverage report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Build | |
run: | | |
sudo apt-get -y install lcov llvm | |
./autogen.sh | |
./configure --enable-lcov --enable-lcov-branch-coverage --without-bdb CC=clang CXX=clang++ | |
make -j4 total_coverage.info | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./total_coverage.info | |
fail_ci_if_error: false # optional (default = false) | |
verbose: true # optional (default = false) |