Compare commits

..

No commits in common. 'main' and 'v0.0.6' have entirely different histories.
main ... v0.0.6

@ -119,9 +119,8 @@ var ErrorSeverity = map[ErrorCode]SeverityLevel{
ErrUnknownRulesKey: Warning, ErrUnknownRulesKey: Warning,
// Notes (if needed, add informational codes here) // Notes (if needed, add informational codes here)
ErrJobNameTooLong: Note, ErrJobNameTooLong: Note,
ErrVariableNameTooLong: Note, ErrVariableNameTooLong: Note,
ErrNeedNameTooLong: Note, ErrNeedNameTooLong: Note,
ErrMissingFinalNewline: Note, ErrMissingFinalNewline: Note,
ErrDependencyNotInNeeds: Note,
} }

@ -88,6 +88,7 @@ func ParseGitLabCIConfig(data []byte, ve *errors.ValidationError) (*GitLabCIConf
if depVal.Kind == yaml.SequenceNode { if depVal.Kind == yaml.SequenceNode {
for k := 0; k < len(depVal.Content); k++ { for k := 0; k < len(depVal.Content); k++ {
depNode := depVal.Content[k] depNode := depVal.Content[k]
job.Dependencies = append(job.Dependencies, depNode.Value)
job.DependencyLines[depNode.Value] = struct { job.DependencyLines[depNode.Value] = struct {
Line int Line int
Column int Column int

Loading…
Cancel
Save