build(deps): bump jupyter-book from 1.0.4.post1 to 2.1.2 #484
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: dev | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| dev-deps: | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, windows-2022, macos-14] | |
| python-version: ["3.12"] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: install developer dependencies | |
| run: | | |
| # NOTE: production use of this command | |
| # would be python -m pip ... | |
| pip install --upgrade pip | |
| pip install -e . --group test --group lint --group docs |