blob: dd61cb3f035e32fe42239a04ff74520632cb7e93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Yamllint of *.yml for .gitlab-ci.yml.
# This uses rules from project root `.yamllint`.
lint-ci-gitlab:
extends:
- .default-tags
- .default-retry
- .except-docs
image: sdesbure/yamllint:latest
dependencies: []
script:
- yamllint .gitlab-ci.yml .gitlab/ci lib/gitlab/ci/templates changelogs
|