2019-09-04 21:01:54 +05:30
|
|
|
# Yamllint of *.yml for .gitlab-ci.yml.
|
|
|
|
# This uses rules from project root `.yamllint`.
|
|
|
|
lint-ci-gitlab:
|
2019-12-04 20:38:33 +05:30
|
|
|
extends:
|
|
|
|
- .default-tags
|
|
|
|
- .default-retry
|
|
|
|
- .default-only
|
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- "**/*.yml"
|
2019-09-04 21:01:54 +05:30
|
|
|
image: sdesbure/yamllint:latest
|
2019-12-04 20:38:33 +05:30
|
|
|
dependencies: []
|
2019-09-04 21:01:54 +05:30
|
|
|
script:
|
2019-10-12 21:52:04 +05:30
|
|
|
- yamllint .gitlab-ci.yml .gitlab/ci lib/gitlab/ci/templates changelogs
|