fix: get_wrapped_container returns container all the time now #1679
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: docs | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: ./.github/actions/setup-env | |
| with: | |
| python-version: "3.11" | |
| - name: Install Python dependencies | |
| run: poetry install --all-extras | |
| - name: Build documentation | |
| run: make docs |