Add ContinueWith — AI-native continuation widget #8448
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: Python | |
| on: | |
| push: | |
| pull_request: | |
| # Superseded runs on the same ref are cancelled (e.g. rapid amend-pushes), | |
| # except on main, where every merge keeps its own CI run | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| detect-packages: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| packages: ${{ steps.find-packages.outputs.packages }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Find Python packages | |
| id: find-packages | |
| working-directory: src | |
| run: | | |
| PACKAGES=$(find . -name pyproject.toml -exec dirname {} \; | sed 's/^\.\///' | jq -R -s -c 'split("\n")[:-1]') | |
| echo "packages=$PACKAGES" >> $GITHUB_OUTPUT | |
| test: | |
| needs: [detect-packages] | |
| strategy: | |
| matrix: | |
| package: ${{ fromJson(needs.detect-packages.outputs.packages) }} | |
| name: Test ${{ matrix.package }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: "src/${{ matrix.package }}/.python-version" | |
| - name: Install dependencies | |
| working-directory: src/${{ matrix.package }} | |
| run: uv sync --frozen --all-extras --dev | |
| - name: Check if tests exist | |
| id: check-tests | |
| working-directory: src/${{ matrix.package }} | |
| run: | | |
| if [ -d "tests" ] || [ -d "test" ] || grep -q "pytest" pyproject.toml; then | |
| echo "has-tests=true" >> $GITHUB_OUTPUT | |
| else | |
| echo "has-tests=false" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Run tests | |
| if: steps.check-tests.outputs.has-tests == 'true' | |
| working-directory: src/${{ matrix.package }} | |
| run: uv run pytest | |
| build: | |
| needs: [detect-packages, test] | |
| strategy: | |
| matrix: | |
| package: ${{ fromJson(needs.detect-packages.outputs.packages) }} | |
| name: Build ${{ matrix.package }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: "src/${{ matrix.package }}/.python-version" | |
| - name: Install dependencies | |
| working-directory: src/${{ matrix.package }} | |
| run: uv sync --locked --all-extras --dev | |
| - name: Run pyright | |
| working-directory: src/${{ matrix.package }} | |
| run: uv run --frozen pyright | |
| - name: Build package | |
| working-directory: src/${{ matrix.package }} | |
| run: uv build | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: dist-${{ matrix.package }} | |
| path: src/${{ matrix.package }}/dist/ |