New documentation for groups feature (Infra) #313
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: Automatic documentation checks | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| spellcheck: | |
| name: Spelling check | |
| runs-on: | |
| group: "Canonical self-hosted runners" | |
| labels: | |
| - self-hosted | |
| - linux | |
| - jammy | |
| - large | |
| - X64 | |
| defaults: | |
| run: | |
| working-directory: docs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| with: | |
| persist-credentials: false | |
| - name: Install the doc framework | |
| working-directory: docs/ | |
| run: | | |
| sudo apt install -y -qq python3-venv | |
| make install | |
| - name: Build docs and run spelling checker | |
| working-directory: docs/ | |
| run: | | |
| make spelling | |
| woke: | |
| name: Inclusive language check | |
| runs-on: | |
| group: "Canonical self-hosted runners" | |
| labels: | |
| - self-hosted | |
| - linux | |
| - jammy | |
| - large | |
| - X64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| with: | |
| persist-credentials: false | |
| - name: Install the doc framework | |
| working-directory: docs/ | |
| run: | | |
| sudo apt install -y -qq python3-venv | |
| make install | |
| - name: Run woke checker | |
| working-directory: docs/ | |
| run: | | |
| make woke | |
| linkcheck: | |
| name: Link check | |
| runs-on: | |
| group: "Canonical self-hosted runners" | |
| labels: | |
| - self-hosted | |
| - linux | |
| - jammy | |
| - large | |
| - X64 | |
| defaults: | |
| run: | |
| working-directory: docs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| with: | |
| persist-credentials: false | |
| - name: Install the doc framework | |
| working-directory: docs/ | |
| run: | | |
| sudo apt install -y -qq python3-venv | |
| make install | |
| - name: Run linkchecker | |
| working-directory: docs/ | |
| run: | | |
| make linkcheck |