Update COPR and Flatpak app data #729
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: Code Coverage | |
| on: | |
| push: | |
| branches: [github] | |
| pull_request: | |
| branches: [github] | |
| permissions: | |
| contents: read | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install cmake build-essential lcov | |
| - name: Build tests with coverage | |
| run: | | |
| mkdir build && cd build | |
| cmake -DCMAKE_BUILD_TYPE=Debug \ | |
| -DCMAKE_CXX_FLAGS="--coverage -fprofile-arcs -ftest-coverage" \ | |
| -DCMAKE_EXE_LINKER_FLAGS="--coverage" \ | |
| ${{ github.workspace }}/gtest | |
| make -j$(nproc) | |
| - name: Run tests | |
| run: | | |
| cd build | |
| ./scid_tests | |
| - name: Generate coverage report | |
| run: | | |
| cd build | |
| lcov --capture --directory . --output-file coverage.info --ignore-errors mismatch,negative,gcov | |
| lcov --remove coverage.info '/usr/*' '*/googletest/*' --output-file coverage.info --ignore-errors mismatch,negative,gcov | |
| - name: Upload to Codecov | |
| uses: codecov/codecov-action@v7 | |
| with: | |
| files: build/coverage.info | |
| fail_ci_if_error: true | |
| skip_validation: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |