Auto deactivation in test mode will only deactivate SSO Test Users #6690
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 |