Skip to content

ci: add codecov github action #1

ci: add codecov github action

ci: add codecov github action #1

Workflow file for this run

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)