deps: bump ruff from 0.16.2 to 0.16.3 in the pip-minor-patch group (#… #6676
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: Wrap E2E | |
| on: | |
| pull_request: | |
| branches: [main] | |
| # Scoped to what the `headroom wrap` flow actually exercises (mirrors | |
| # wrap-native-e2e), not all of headroom/** — a pure-Python logic change | |
| # elsewhere shouldn't spin up a docker wrap E2E. | |
| paths: | |
| - 'headroom/cli/**' | |
| - 'headroom/providers/**' | |
| - 'crates/**' | |
| - 'docker/**' | |
| - 'Dockerfile' | |
| - 'e2e/**' | |
| - 'scripts/install*' | |
| - 'pyproject.toml' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - 'rust-toolchain.toml' | |
| - 'uv.lock' | |
| - 'sdk/typescript/**' | |
| - 'plugins/openclaw/**' | |
| - '.github/workflows/wrap-e2e.yml' | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: wrap-e2e-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| docker-wrap-e2e: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Build wrap e2e image | |
| run: docker build -f e2e/wrap/Dockerfile -t headroom-wrap-e2e . | |
| - name: Run wrap e2e container | |
| run: docker run --rm headroom-wrap-e2e |