Set log stacklevel to pshell's caller #112
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: Documentation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: ["*"] | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: prefix-dev/setup-pixi@v0 | |
| with: | |
| pixi-version: v0.62.2 | |
| cache: true | |
| environments: docs | |
| - name: Regenerate readthedocs environment | |
| run: pixi run doc-requirements | |
| - name: Check that readthedocs environment is up to date in git | |
| run: git diff --exit-code doc/requirements.yml | |
| - name: Build docs | |
| run: pixi run -e docs docs | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: pshell-docs | |
| path: build/html |