Documentation ¶ Index ¶ type Job type Runner Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Job ¶ type Job struct { Image string Commands []string } Job describes how to execute a CI job. type Runner ¶ type Runner interface { // Run should synchronously execute the described job and return the output. Run(context.Context, *Job, string) (string, error) } Runner contains methods for running user provided code in isolation. Source Files ¶ View all Source files ci.go Click to show internal directories. Click to hide internal directories.