Add Held group #11
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: | |
| - main | |
| jobs: | |
| doc-warnings: | |
| name: Check doc builds without warnings | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build in strict mode | |
| # The strict flag treats warnings as errors | |
| run: | |
| pipx run --with mkdocs-material --with mkdocs-awesome-nav mkdocs build | |
| --clean --strict | |
| # TODO: test the code snippets |