Add functions under the old names but as deprecated #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |