add scheduler information #191
Workflow file for this run
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| linkcheck: | |
| name: "Link check" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install sphinx | |
| run: pip install sphinx sphinx_rtd_theme sphinxcontrib-mermaid sphinxcontrib.googleanalytics sphinxcontrib-video sphinxcontrib.spelling | |
| - name: install graphviz | |
| run: sudo apt install graphviz | |
| - name: Run Spell Check | |
| continue-on-error: true | |
| uses: infraspecdev/[email protected] | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| github_repository: 'yeti-switch/doc' | |
| pr_number: ${{ github.event.number }} | |
| files: 'en/general.rst' | |
| openai_api_key: ${{ secrets.OPENAI_API_KEY }} | |
| openai_model: 'gpt-4o' | |
| model_max_token: 16000 | |
| - name: Run spellcheck | |
| run: make spellcheck | |
| - name: Run linkcheck | |
| run: make linkcheck | |
| - name: Run build | |
| env: | |
| SPHINXOPTS: "-W --keep-going -n" | |
| run: make | |