GitHunt
LU

lukesneeringer/cargo-nextest

Docker image for running Rust tests using nextest.

nextest image

This repository contains Docker image for using nextest to run Rust tests.

It derives from the official Rust image (rust:1-slim) and additionally installs nextest 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-nextest
    steps:
      - uses: actions/checkout@v4
      # And so on...

Languages

Dockerfile100.0%

Contributors

MIT License
Created July 24, 2025
Updated January 27, 2026
lukesneeringer/cargo-nextest | GitHunt