🐛 [BUG] Prevent objects from being returned several times in APIv2 by filtering on ManyToMany (refs #4448) #2784
Workflow file for this run
This file contains 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/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
release: | |
types: | |
- created | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/python-cache-requirements | |
with: | |
requirements: docs/requirements.txt | |
- name: Build doc | |
run: | | |
cd docs/ | |
make html SPHINXOPTS="-W" |