Skip to content

Implement helper on LazyBuffer for getting multiple elements by index #164

Implement helper on LazyBuffer for getting multiple elements by index

Implement helper on LazyBuffer for getting multiple elements by index #164

Workflow file for this run

on:
push:
branches: [master]
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
name: Code Coverage
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v4
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run llvm-cov
run: cargo llvm-cov --all-features --doctests --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: lcov.info