diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4231fd4c..48356897 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,7 +5,7 @@ name: Test Coverage jobs: run-coverage: name: Build - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -43,9 +43,9 @@ jobs: - name: Generate coverage report run: | cd build - lcov --capture --directory . --output-file coverage.info --ignore-errors mismatch - lcov --remove coverage.info '/usr/*' 'boost/*' 'c++11/*' 'boost-test' --output-file coverage.info - lcov --list coverage.info + lcov --capture --directory . --output-file coverage.info + lcov --remove coverage.info '/usr/*' 'boost/*' 'c++11/*' '/home/runner/work/ADOL-C/ADOL-C/ADOL-C/boost-test/*' --output-file coverage.info + lcov --list coverage.info # Upload coverage report to Codecov - name: Upload coverage to Codecov