Skip to content

bump to v29.0.0-rc.12 (#43) #167

bump to v29.0.0-rc.12 (#43)

bump to v29.0.0-rc.12 (#43) #167

Workflow file for this run

name: Coverage
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/setup-build
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
os: ubuntu-latest
- run: |
python build.py cs cov
cp $(find tests -name "coverage.cobertura.xml") ./
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.cobertura.xml
fail_ci_if_error: true