If your job fails with the following error, even though the keys "jobs" and "version" are present in your config.yml, the cause for this can be YAML syntax validity issues (such as incorrect indentation) with the config.yml contents, leading to the config not being able to be parsed fully.
Your config file has errors and may not run correctly:
2 schema violations found
required key [jobs] not found
required key [version] not found
Solutions:
-
Use the "circleci config validate" command of the CircleCI Local CLI.
-
Use a YAML linting tool for example https://yaml-online-parser.appspot.com/
You should no longer see the error on the syntax validator.
Comments
Article is closed for comments.