feat: Add --piku-repo and --piku-branch options for installing from forks #61
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 UV Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| e2e-uv-tests: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Run E2E UV tests | |
| run: | | |
| cd tests/e2e-uv | |
| chmod +x run_tests.sh test_uv_e2e.sh | |
| ./run_tests.sh --no-cache | |
| env: | |
| # Use clusterfudge/piku with UV fixes until merged upstream | |
| PIKU_REPO: clusterfudge/piku | |
| PIKU_BRANCH: claude/fix-piku-uv-support-ILtq9 |