Skip to content

add code coverage to pipeline #16

add code coverage to pipeline

add code coverage to pipeline #16

Workflow file for this run

on:
# push:
# branches: [main, 'release-v**']
pull_request:
name: Code coverage
concurrency:
group: 'codecov-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
permissions:
id-token: write
contents: read
jobs:
codecov:
runs-on: ubuntu-latest-8-cores
# container:
# image: xd009642/tarpaulin:develop-nightly
# options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@master
- name: Prep build
uses: ./.github/actions/prep-ubuntu
with:
cache: disabled
- name: Install Tarpaulin
run: cargo install --locked cargo-tarpaulin
- name: generate codecov reports
env:
RUST_BACKTRACE: 1
run: |
cargo tarpaulin --release --features fast-runtime \
--no-fail-fast --workspace --timeout 3600 \
--exclude-files **/mock.rs **/weights.rs **/weights/* --out xml --out html
ls -la
# UPLOAD REPORTS (requires cargo 1.70.0)
- name: Upload to codecov.io
if: ${{ always() }}
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: ./coverage1.xml,./coverage2.xml # optional
# flags: unittests # optional
# name: codecov-umbrella # optional
# fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)