Skip to content

Merge pull request #6 from clippingkk/feat/ci-benchmark #46

Merge pull request #6 from clippingkk/feat/ci-benchmark

Merge pull request #6 from clippingkk/feat/ci-benchmark #46

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Code Coverage
jobs:
test:
name: coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v4
- name: Generate code coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_CLI_TOKEN }}
flags: unittests
name: codecov-umbrella