LabHit Docs
Documentation

Everything you need to ship with LabHit

LabHit is a modular CI/CD engine that runs inside the tools you already use — add it to your existing CI, run it across any cloud, or run it standalone. A minimal core, with capabilities delivered through sandboxed extensions and a small, readable pipeline vocabulary.

.labhit.yaml
engine: "1"

pipeline:
  name: ci

stages:
  test:
    use: test/cargo

  build:
    after: [test]
    run: cargo build --release
    sandbox:
      image: rust:slim

  deploy:
    after: [build]
    use: deploy/kubernetes
    gate:
      policy: production