Build the HTML for the documentation as part of the CI (#3498)

This commit is contained in:
Bruno Alla 2021-12-28 15:35:56 +00:00 committed by GitHub
parent a94e2354c4
commit 2adcf9f5d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -41,3 +41,5 @@ then
fi
fi
# Generate the HTML for the documentation
cd docs && make html

View File

@ -38,3 +38,6 @@ docker-compose -f local.yml run django python manage.py makemessages --all
# Make sure the check doesn't raise any warnings
docker-compose -f local.yml run django python manage.py check --fail-level WARNING
# Generate the HTML for the documentation
docker-compose -f local.yml run docs make html