package datakit-github

  1. Overview
  2. Docs
type t = [
  1. | `Error
  2. | `Pending
  3. | `Success
  4. | `Failure
]

The type for status states.

val pp : t Fmt.t

pp is the pretty-printer for status states.

val to_string : t -> string

to_string v is the string represenation of v.

val of_string : string -> t option

of_string s is the value v such that of_string s is Some v.