Compare commits

..

5 Commits
v0.0.3 ... main

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

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

@ -1,9 +1,9 @@
package gitlabcivalidator
package gitflamecivalidator
import (
"fmt"
"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.
@ -88,7 +88,6 @@ func ParseGitLabCIConfig(data []byte, ve *errors.ValidationError) (*GitLabCIConf
if depVal.Kind == yaml.SequenceNode {
for k := 0; k < len(depVal.Content); k++ {
depNode := depVal.Content[k]
job.Dependencies = append(job.Dependencies, depNode.Value)
job.DependencyLines[depNode.Value] = struct {
Line int
Column int

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

@ -1,10 +1,10 @@
package gitlabcivalidator
package gitflamecivalidator
import (
"fmt"
"gopkg.in/yaml.v3"
"strings"
"tea.gitpark.ru/Azaki/CI_VALIDATOR/errors"
"tea.gitpark.ru/Azaki/ci_validator/errors"
"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

Loading…
Cancel
Save