chore(py): Migrate all python packages to use uv #1024
This file contains 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: Install Task | |
uses: arduino/setup-task@v2 | |
- 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' task clientpy:check |