re-enable flow scanner #429
Workflow file for this run
This file contains hidden or 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@v5 | |
- uses: actions/setup-python@v6 | |
with: | |
python-version: 3.12.11 | |
- run: pip install --upgrade -r .config/python/dev/requirements.txt | |
- run: cd .automation && bash build_schemas_doc.sh && cd .. | |
- run: mkdocs build | |