2021-06-21 14:04:13 +00:00
|
|
|
name: Check Documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-07-23 09:00:07 +00:00
|
|
|
branches:
|
|
|
|
- '*'
|
2021-06-21 14:04:13 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
docs:
|
|
|
|
name: Check, verify and build documentation
|
2024-01-19 14:12:05 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2021-06-21 14:04:13 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 16:00:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-06-21 14:04:13 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check documentation
|
|
|
|
run: make docs-pull-images docs
|
2023-03-20 17:30:08 +00:00
|
|
|
env:
|
|
|
|
# These variables are not passed to workflows that are triggered by a pull request from a fork.
|
|
|
|
DOCS_VERIFY_SKIP: ${{ vars.DOCS_VERIFY_SKIP }}
|
|
|
|
DOCS_LINT_SKIP: ${{ vars.DOCS_LINT_SKIP }}
|