Skip to content

Add functions under the old names but as deprecated #12

Add functions under the old names but as deprecated

Add functions under the old names but as deprecated #12

Workflow file for this run

name: coverage
on:
push:
branches:
- master
defaults:
run:
shell: bash
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
name: Upload coverage to codecov.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install beta --profile minimal --component llvm-tools
- run: cargo install cargo-llvm-cov
- run: cargo +beta llvm-cov --all-features --codecov --output-path codecov.json
- uses: codecov/codecov-action@v4
with:
file: codecov.json
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true