Skip to content

opt: escape cold path + SIMD find_key_end + write_string_fast inline #31

opt: escape cold path + SIMD find_key_end + write_string_fast inline

opt: escape cold path + SIMD find_key_end + write_string_fast inline #31

Workflow file for this run

name: Coverage
on:
push:
branches: [main, master]
pull_request:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
coverage:
name: Code coverage
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: lcov.info
fail_ci_if_error: false