Skip to content

Prepared version v0.0.6 #12

Prepared version v0.0.6

Prepared version v0.0.6 #12

Workflow file for this run

name: Coverage
on: [ push, pull_request ]
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo install cargo-llvm-cov
- run: cargo llvm-cov --no-cfg-coverage --cobertura --output-path ./coverage.xml
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml