chore(deps): update dependency djangorestframework to >=3.15.2,<=3.15… #124
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: "Build docs" | |
| on: [push, pull_request] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # renovate: datasource=python-version depName=python | |
| PYTHON_VERSION: 3.14.2 | |
| # renovate: datasource=pypi depName=uv | |
| UV_VERSION: 0.9.22 | |
| # renovate: datasource=pypi depName=sphinx | |
| SPHINX_VERSION: 9.1.0 | |
| jobs: | |
| build: | |
| name: "Build docs" | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 1 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv ${{ env.UV_VERSION }} & Python ${{ env.PYTHON_VERSION }} | |
| uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| version: ${{ env.UV_VERSION }} | |
| - name: Build docs | |
| run: | | |
| cd docs | |
| uv run --with sphinx==${SPHINX_VERSION} make html |