chore(py): Migrate all python packages to use uv #1013
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: Check Self | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| workflow_dispatch: | |
| merge_group: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build tester image | |
| run: | | |
| sudo chmod a+rwx -R libs/gl-client-py | |
| make docker-image | |
| - name: Rust Cache | |
| uses: actions/cache@v2 | |
| with: | |
| path: | | |
| /tmp/gltesting/cargo | |
| /tmp/gltesting/target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Check Self | |
| run : | | |
| PYTEST_OPTS='-n 8' make docker-check-self | |
| - name: Run python image | |
| run : | | |
| PYTEST_OPTS='-n 8' make docker-check-py |