Rewrites graph module #59
Workflow file for this run
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: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Perform coverage check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install "Check" | |
run: sudo apt install check | |
- uses: actions/checkout@v4 | |
- name: Configure | |
run: cmake -S . -B build -DBUILD_COVERAGE=ON | |
- name: Build | |
run: cmake --build build | |
- name: Run tests | |
run: ctest --test-dir build | |
- name: Run coverage report | |
run: ctest -T coverage --test-dir build |