Bug 2242269: external: fix client health checker user keyring return #252
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs-check | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- release-* | |
pull_request: | |
branches: | |
- master | |
- release-* | |
# cancel the in-progress workflow when PR is refreshed. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
docs-check: | |
name: docs-check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Run helm-docs | |
run: | | |
make helm-docs | |
DIFF=$(git diff) | |
if [ ! -z "$DIFF" ]; then | |
echo "Please run 'make helm-docs' locally, commit the updated docs, and push the change. See https://rook.io/docs/rook/latest/Contributing/documentation/#running-helm-docs" | |
fi | |
git diff --exit-code | |
- name: Install mkdocs and dependencies | |
run: cd build/release/ && make deps.docs | |
- name: Check documentation for CRDs | |
run: | | |
make generate-docs-crds | |
DIFF_ON_DOCS=$(git diff --ignore-matching-lines='on git commit') | |
if [ ! -z "$DIFF_ON_DOCS" ]; then | |
echo "Please run 'make generate-docs-crds' locally, commit the updated crds docs, and push the change" | |
fi | |
git diff --ignore-matching-lines='on git commit' --exit-code | |
- name: Build documentation using mkdocs | |
run: make docs-build |