(yaml string)
| 35 | } |
| 36 | |
| 37 | func loadYAML(yaml string) (*types.Config, error) { |
| 38 | return loadYAMLWithEnv(yaml, nil) |
| 39 | } |
| 40 | |
| 41 | func loadYAMLWithEnv(yaml string, env map[string]string) (*types.Config, error) { |
| 42 | dict, err := ParseYAML([]byte(yaml)) |
no test coverage detected
searching dependent graphs…