Roll-out per-group quota policy to earthscope prod #222
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
| # This is a GitHub workflow defining a set of jobs with a set of steps. | |
| # ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
| # | |
| name: Test docs | |
| on: | |
| pull_request: | |
| paths: | |
| - docs/** | |
| - '**/test-docs.yaml' | |
| push: | |
| paths: | |
| - docs/** | |
| - '**/test-docs.yaml' | |
| branches-ignore: | |
| - dependabot/** | |
| - pre-commit-ci-update-config | |
| workflow_dispatch: | |
| jobs: | |
| test-docs: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e | |
| with: | |
| node-version: 24 | |
| - name: Install deps | |
| run: pip install . -r docs/requirements.txt | |
| - name: Generate hub tables | |
| run: python -m helper_programs.hub_info_table | |
| working-directory: docs | |
| # linkcheck is done separately from this in doc-links.yml, scheduled to | |
| # run every day and open/update an issue | |
| - name: Build docs | |
| run: jupyter book build --site |