Compare commits

...

1 Commits
v0.0.6 ... main

Author SHA1 Message Date
andrew dcb7382c43 small fix
3 weeks ago

@ -119,8 +119,9 @@ 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,7 +88,6 @@ 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