Skip to content

Update README.md to say "see examples for usage" with link. #285

Update README.md to say "see examples for usage" with link.

Update README.md to say "see examples for usage" with link. #285

Workflow file for this run

name: Coverage
on:
push:
branches: ['main', '0.8.x']
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-llvm-cov
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: lcov.info
fail_ci_if_error: true