Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Reduce number of reallocations #34

Reduce number of reallocations

Reduce number of reallocations #34

Workflow file for this run

name: Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
codecov:
name: Code coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v3
- run: |
cargo tarpaulin --verbose --engine llvm --release --out Xml
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true