chore(deps): bump the pip group across 9 directories with 13 updates #3
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: GCPC modules test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - '.github/workflows/gcpc-modules-tests.yml' | |
| - 'sdk/python/**' | |
| - '!**/*.md' | |
| - '!**/OWNERS' | |
| jobs: | |
| all-gcpc-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| - name: Install protobuf-compiler | |
| run: sudo apt update && sudo apt install -y protobuf-compiler | |
| - name: Install setuptools | |
| run: | | |
| pip3 install setuptools | |
| pip3 freeze | |
| - name: Install Wheel | |
| run: pip3 install wheel==0.42.0 | |
| - name: Install python sdk | |
| run: pip install sdk/python | |
| - name: Install google-cloud component | |
| run: pip install components/google-cloud | |
| - name: Generate API proto files | |
| working-directory: ./api | |
| run: make clean python | |
| - name: Install kfp-pipeline-spec from source | |
| run: | | |
| python3 -m pip install -I api/v2alpha1/python | |
| - name: Install Pytest | |
| run: pip install $(grep 'pytest==' sdk/python/requirements-dev.txt) | |
| - name: Run test | |
| run: pytest ./test/gcpc-tests/run_all_gcpc_modules.py |