Merge branch 'main' into bug/3026/checkov-CKV2_GHA_1 #1
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: "Check MkDocs generation" | |
on: | |
push: | |
paths: | |
- "**/mkdocs.yml" | |
pull_request: | |
paths: | |
- "**/mkdocs.yml" | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
test-doc-gen: | |
runs-on: ubuntu-latest | |
permissions: read-all | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.12.0 | |
- run: pip install --upgrade -r .config/python/dev/requirements.txt | |
- run: cd .automation && bash build_schemas_doc.sh && cd .. | |
- run: mkdocs build | |