Skip to content

Commit

Permalink
Update python-api-client-tests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
zelosleone committed Dec 25, 2024
1 parent 2eb6658 commit f261285
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/python-api-client-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ env:
CARGO_TERM_COLOR: always
RUST_LOG: debug
WORKER_SERVICE_HTTP_PORT: 9005
PROTOC_VERSION: 21.12

jobs:
python-api-tests:
Expand All @@ -39,6 +40,14 @@ jobs:
cargo --version
rustc --version
- name: Install Protocol Buffers Compiler
run: |
PB_REL="https://github.com/protocolbuffers/protobuf/releases"
curl -LO $PB_REL/download/v${{ env.PROTOC_VERSION }}/protoc-${{ env.PROTOC_VERSION }}-linux-x86_64.zip
unzip protoc-${{ env.PROTOC_VERSION }}-linux-x86_64.zip -d $HOME/.local
echo "$HOME/.local/bin" >> $GITHUB_PATH
protoc --version
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit f261285

Please sign in to comment.