Skip to content

Merge branch 'main' of https://github.com/taocpp/config #110

Merge branch 'main' of https://github.com/taocpp/config

Merge branch 'main' of https://github.com/taocpp/config #110

Workflow file for this run

name: Code Coverage
on:
push:
paths-ignore:
- 'README.md'
- 'doc/**'
pull_request:
paths-ignore:
- 'README.md'
- 'doc/**'
jobs:
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- run: cmake -E make_directory build
- working-directory: build/
run: cmake $GITHUB_WORKSPACE -DCMAKE_CXX_FLAGS="-coverage"
- working-directory: build/
run: cmake --build .
- working-directory: build/
run: ctest --output-on-failure
- working-directory: build/
run: bash <(curl -s https://codecov.io/bash)