Bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.2 in the dependencies group across 1 directory #738
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
name: Code Coverage | |
on: | |
push: { branches: [ "master" ] } | |
pull_request: { branches: [ "master" ] } | |
concurrency: | |
group: coverage-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codecov: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: { submodules: recursive, fetch-depth: 0 } | |
- uses: prefix-dev/[email protected] | |
with: { pixi-version: v0.30.0 } | |
- name: make check | |
run: | | |
pixi run -e env-coverage test-libeantic | |
pixi run -e env-coverage test-pyeantic | |
- uses: flatsurf/actions/show-logs@main | |
if: ${{ always() }} | |
- name: create & post coverage report | |
shell: bash -l {0} | |
run: | | |
pushd libeantic/test | |
find -type f -name '*.gcda' -exec gcov -pbs ../../../e-antic '{}' ';' | |
popd | |
pushd libeantic/src | |
find -type f -name '*.gcda' -exec gcov -pbs ../../../e-antic '{}' ';' | |
popd | |
pushd libeantic/srcxx | |
find -type f -name '*.gcda' -exec gcov -pbs ../../../e-antic '{}' ';' | |
popd | |
curl -s https://codecov.io/bash | bash -s - -X gcov -R `pwd` . |