mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
gitlab-ci: add job to run make check-docs
Add another job to execute `make check-docs`, which lints our documentation and makes sure that expected manpages exist. This job mirrors the same job that we already have for GitHub Actions. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
6423920974
commit
401151de9e
1 changed files with 9 additions and 0 deletions
|
@ -122,3 +122,12 @@ check-whitespace:
|
|||
- ./ci/check-whitespace.sh "$CI_MERGE_REQUEST_TARGET_BRANCH_SHA"
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||
|
||||
documentation:
|
||||
image: ubuntu:latest
|
||||
variables:
|
||||
jobname: Documentation
|
||||
before_script:
|
||||
- ./ci/install-dependencies.sh
|
||||
script:
|
||||
- ./ci/test-documentation.sh
|
||||
|
|
Loading…
Reference in a new issue