Skip to content

feat(aggregation, stats): add missing value handling for collapse ops… #248

feat(aggregation, stats): add missing value handling for collapse ops…

feat(aggregation, stats): add missing value handling for collapse ops… #248

Workflow file for this run

name: Code Coverage
on: [ push, pull_request ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: codecov pgr
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate code coverage
run: |
cargo +nightly tarpaulin --bins --tests --follow-exec --engine llvm --out xml -- --test-threads 1
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true