Skip to content

build: bump the rust-dependencies group with 7 updates #23

build: bump the rust-dependencies group with 7 updates

build: bump the rust-dependencies group with 7 updates #23

Workflow file for this run

name: coverage
on:
push:
branches: [main]
pull_request:
env:
# Colored output by the CLI should be colored in Github Actions
CLICOLOR_FORCE: 1
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@v4
- name: Generate code coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true