docs: add subgraph docs #36
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: Vale Style | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'styles/**' | |
| - 'vale.ini' | |
| jobs: | |
| vale-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| id: setup-python | |
| with: | |
| python-version: '3.12' | |
| - name: Cache virtualenv | |
| uses: actions/cache@v4 | |
| with: | |
| path: docs/.venv | |
| key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('docs/requirements.txt') }} | |
| restore-keys: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}- | |
| - name: Cache Vale styles | |
| uses: actions/cache@v4 | |
| with: | |
| path: styles/Vale | |
| key: vale-styles-${{ hashFiles('vale.ini') }} | |
| - name: Install Vale | |
| working-directory: docs | |
| run: make vale-install | |
| - name: Run style checks | |
| working-directory: docs | |
| run: make style-checks |