fix(sandbox): point gogcli module path at the openclaw org #2334
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: E2E Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "crates/gateway/**" | |
| - "crates/cli/**" | |
| - "crates/config/**" | |
| - "crates/sessions/**" | |
| - "crates/tools/**" | |
| - "crates/oauth/**" | |
| - "crates/projects/**" | |
| - "crates/cron/**" | |
| - "crates/memory/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/e2e.yml" | |
| - "scripts/local-validate.sh" | |
| - "scripts/check-local-status.py" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| local-validation: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| name: Local E2E Validation | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| statuses: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Verify local status context | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| REPO: ${{ github.repository }} | |
| PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
| REQUIRED_CONTEXT: local/e2e | |
| run: python3 scripts/check-local-status.py |