Compare commits

..

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

@ -123,5 +123,4 @@ var ErrorSeverity = map[ErrorCode]SeverityLevel{
ErrVariableNameTooLong: Note,
ErrNeedNameTooLong: Note,
ErrMissingFinalNewline: Note,
ErrDependencyNotInNeeds: Note,
}

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

@ -1,9 +1,9 @@
package gitflamecivalidator
package gitlabcivalidator
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,6 +88,7 @@ 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 gitflamecivalidator
package gitlabcivalidator
import (
"fmt"

@ -1,10 +1,10 @@
package gitflamecivalidator
package gitlabcivalidator
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.22
go 1.18
require gopkg.in/yaml.v3 v3.0.1

Loading…
Cancel
Save