GitLabCi is a simplified representation of GitLab CI/CD Configuration. @see https://docs.gitlab.com/ee/ci/yaml/
| 27 | // GitLabCi is a simplified representation of GitLab CI/CD Configuration. |
| 28 | // @see https://docs.gitlab.com/ee/ci/yaml/ |
| 29 | type GitLabCI struct { |
| 30 | Stages []string `yaml:",omitempty"` |
| 31 | // @see https://github.com/go-yaml/yaml/issues/63 |
| 32 | GitLabCIStages `yaml:",inline"` |
| 33 | } |
| 34 | |
| 35 | type GitLabCIStages map[string]GitLabCIStage |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected