GitHunt
LU

lukesneeringer/cargo-llvm-cov

Docker image for `cargo llvm-cov`.

llvm-cov image

This repository contains Docker image for using llvm-cov to measure Rust coverage.

It derives from the nightly Rust image (rustlang/rust:nightly-slim) and additionally installs
llvm-cov as well as other dependencies that are commonly needed.

Using the Image

This image can be used in GitHub Actions workflows:

---
name: build
on:
  pull_request:
    branches:
      - main
jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/lukesneeringer/cargo-llvm-cov
    steps:
      - uses: actions/checkout@v4
      # And so on...

Languages

Dockerfile100.0%

Contributors

MIT License
Created July 23, 2025
Updated January 27, 2026
lukesneeringer/cargo-llvm-cov | GitHunt