Compare commits

...

5 Commits
v0.0.3 ... main

@ -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,
} }

@ -1,4 +1,4 @@
package gitlabcivalidator package gitflamecivalidator
import "gopkg.in/yaml.v3" import "gopkg.in/yaml.v3"

@ -1,9 +1,9 @@
package gitlabcivalidator package gitflamecivalidator
import ( import (
"fmt" "fmt"
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
"tea.gitpark.ru/Azaki/CI_VALIDATOR/errors" "tea.gitpark.ru/Azaki/ci_validator/errors"
) )
// ParseGitLabCIConfig parses the YAML and returns the GitLabCIConfig structure. // ParseGitLabCIConfig parses the YAML and returns the GitLabCIConfig structure.
@ -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

@ -1,4 +1,4 @@
package gitlabcivalidator package gitflamecivalidator
import ( import (
"fmt" "fmt"

@ -1,10 +1,10 @@
package gitlabcivalidator package gitflamecivalidator
import ( import (
"fmt" "fmt"
"gopkg.in/yaml.v3" "gopkg.in/yaml.v3"
"strings" "strings"
"tea.gitpark.ru/Azaki/CI_VALIDATOR/errors" "tea.gitpark.ru/Azaki/ci_validator/errors"
"time" "time"
) )

@ -1,5 +1,5 @@
module tea.gitpark.ru/Azaki/CI_VALIDATOR module tea.gitpark.ru/Azaki/ci_validator
go 1.18 go 1.22
require gopkg.in/yaml.v3 v3.0.1 require gopkg.in/yaml.v3 v3.0.1

Loading…
Cancel
Save