Sphinx Tests #1362
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
| name: Sphinx Tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| - 'workflows/**' | |
| pull_request: | |
| schedule: | |
| - cron: '0 1 * * SUN' | |
| jobs: | |
| strict: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout OpenDDS | |
| uses: actions/checkout@v5 | |
| - name: Run Strict Checks | |
| run: | | |
| python3 docs/build.py strict | |
| linkcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout OpenDDS | |
| uses: actions/checkout@v5 | |
| - name: Run Link Checks | |
| run: | | |
| python3 docs/build.py linkcheck |