add initial python client #34
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: protobuf | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- policy-sim | |
jobs: | |
protogen: | |
name: protogen | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run protogen | |
run: make proto | |
- name: Check Go codegen | |
run: | | |
./scripts/check-change.sh \ | |
api/multiparty/v1/*.pb.go | |
- name: Check Python codegen | |
run: | | |
./scripts/check-change.sh \ | |
clients/python/multiparty/api/multiparty/prompt/v1/*.py |