chore(tests): added makefiles for testing workflow tests locally #390
Workflow file for this run
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: GCPC modules test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
paths: | |
- '.github/workflows/gcpc-modules-tests.yml' | |
- 'sdk/python/**' | |
jobs: | |
all-gcpc-tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install requirements | |
run: make setup-grpc-modules-test | |
- name: Run test | |
run: make test-grpc-modules-test |