{inputs, ...}: let inherit (inputs) cilib; in cilib.mkCI { pipelines = { "default" = { stages = ["example"]; jobs."example" = { stage = "example"; script = ["echo hello world"]; }; }; "test".jobs."example" = { stage = ".pre"; script = ["echo hello world"]; }; }; }