Add @use_datetimepicker decorator to use Tempus Dominus on Bootstrap 5 pages #4287
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: commcare-hq docs | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install docs requirements | |
run: pip install -r requirements/docs-requirements.txt | |
- name: Test docs build | |
run: bash ./scripts/test-make-docs.sh | |
- name: Upload test artifacts | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: make-docs-artifacts | |
path: artifacts | |
if-no-files-found: ignore | |
retention-days: 7 |