This allows for designating a mcu as a child one #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: Docs test | |
| on: | |
| pull_request: | |
| paths: | |
| - docs/** | |
| - .github/workflows/ci-docs_test.yaml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: 'latest' | |
| enable-cache: true | |
| cache-dependency-glob: "docs/_kalico/uv.lock" | |
| - name: Setup Python | |
| working-directory: docs/_kalico/ | |
| run: uv python install | |
| - name: Build MkDocs Pages | |
| working-directory: docs/_kalico/ | |
| run: uv run mkdocs build --strict |