| 9 | } |
| 10 | |
| 11 | type Builder interface { |
| 12 | Trigger() error |
| 13 | SetSecrets(map[string]string) error |
| 14 | GetStatusUrl() (string, error) |
| 15 | } |
| 16 | |
| 17 | // static check to ensure all methods are implemented |
| 18 | var _ = []Builder{&GitHub{}, &Semaphore{}, &SelfHosted{}} |
no outgoing calls
no test coverage detected