Refactored compile flags and explicit initialize members #12
This file contains hidden or 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
| name: Test coverage | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - src/** | |
| - cmake/** | |
| - CMakeLists.txt | |
| - Makefile | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: get the code | |
| uses: actions/checkout@v4.1.4 | |
| - name: install ninja and lcov | |
| run: sudo apt-get install ninja-build lcov | |
| - name: build and run the tests | |
| run: make testcov | |
| - name: coveralls | |
| uses: coverallsapp/github-action@v2 |