CloudBuild is a simplified representation of Cloud Build config. @see https://cloud.google.com/cloud-build/docs/build-config
| 22 | // CloudBuild is a simplified representation of Cloud Build config. |
| 23 | // @see https://cloud.google.com/cloud-build/docs/build-config |
| 24 | type CloudBuild struct { |
| 25 | Steps []CloudBuildStep `yaml:",omitempty"` |
| 26 | } |
| 27 | |
| 28 | type CloudBuildStep struct { |
| 29 | Name string `yaml:",omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected