API V2 Documentation. #908
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: Linting | |
| on: | |
| pull_request: | |
| jobs: | |
| prose: | |
| runs-on: ubuntu-22.04 # See https://github.com/errata-ai/vale-action/issues/128 before upgrading | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| cache: 'pip' | |
| - name: Install Python dependencies | |
| run: pip3 install -r docs/requirements.txt | |
| - name: Vale | |
| uses: errata-ai/vale-action@reviewdog | |
| with: | |
| version: 3.7.1 # Please keep version in sync with the version in .gitpod.Dockerfile for a consistent experience | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| cache: 'pip' | |
| - name: Install Python dependencies | |
| run: pip3 install -r docs/requirements.txt | |
| - name: Build docs | |
| working-directory: docs | |
| run: make html | |
| - name: Check links | |
| working-directory: docs | |
| run: make checklinks |