Skip to content

Workflow file for this run

name: Ubuntu CI Test
on:
push:
branches: [ main, master, dev ]
pull_request:
branches: [ main, master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install
run: |
pip install --user -U gcovr
- name: prepare
run: |
make prepare
- name: configure
run: |
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=On
- name: building and testing
run: |
cmake --build build --config Debug --target coverage -j4
cd build
ctest .
- name: Code Coverage Report
uses: irongut/[email protected]
with:
filename: build/coverage/coverage.cobertura.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '60 80'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md