Skip to content

chore(deps): bump cargo-nextest from 0.9.104 to 0.9.105 (#42) #105

chore(deps): bump cargo-nextest from 0.9.104 to 0.9.105 (#42)

chore(deps): bump cargo-nextest from 0.9.104 to 0.9.105 (#42) #105

Workflow file for this run

name: coverage
on: [push]
jobs:
test:
name: coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Generate code coverage
run: |
cargo +nightly tarpaulin --all-features --workspace --timeout 120 --out xml --tests
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true