Add some CI #2
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: | |
| - 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 mkdocs build --clean --strict | |
| # TODO: test the code snippets |