Fix deletion of touristic content objects in parsers when an m2m constant field is not a list #3435
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
- '.github/workflows/doc.yml' # if doc workflow change | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '.github/workflows/doc.yml' # if doc workflow change | |
release: | |
types: | |
- created | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v6 | |
with: | |
version: "latest" | |
python-version: "3.10" | |
enable-cache: true | |
cache-suffix: "sphinx" | |
activate-environment: true | |
- name: Build doc | |
run: | | |
cd docs/ | |
uv pip install -r requirements.txt | |
make html SPHINXOPTS="-W" |