Update team.yaml (added myself) #341
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: Check Sphinx Build | |
| on: | |
| pull_request: | |
| branches: [master, source] | |
| jobs: | |
| build-docs: | |
| name: Sphinx build of web pages | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| submodules: true | |
| - uses: prefix-dev/setup-pixi@v0.8.14 | |
| with: | |
| pixi-version: v0.51.0 | |
| cache: true | |
| - name: Build documentation | |
| shell: bash -l {0} | |
| run: | | |
| pixi run html | |
| # - name: Check links | |
| # shell: bash -l {0} | |
| # run: | | |
| # pixi run linkcheck | |
| # workaround https://github.com/actions/upload-artifact/issues/38 | |
| - name: tarball | |
| run: tar czf site.tar.gz ./_build/html/ | |
| # https://github.com/actions/upload-artifact | |
| - name: Upload Website artifact | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2 | |
| with: | |
| name: Website | |
| path: site.tar.gz |