Workflow execution phases.
| 16 | |
| 17 | |
| 18 | class WorkflowPhase(Enum): |
| 19 | """Workflow execution phases.""" |
| 20 | |
| 21 | VALIDATION = "validation" |
| 22 | TESTING = "testing" |
| 23 | BUILD = "build" |
| 24 | RELEASE = "release" |
| 25 | DEPLOYMENT = "deployment" |
| 26 | |
| 27 | |
| 28 | class WorkflowStatus(Enum): |
no outgoing calls
no test coverage detected