We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 216a8a0 commit 28ac9ceCopy full SHA for 28ac9ce
.github/workflows/grpc-generate.yml
@@ -0,0 +1,32 @@
1
+name: Generate gRPC Code
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ pull_request:
8
9
10
11
+jobs:
12
+ generate:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v3
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v3
21
+ with:
22
+ python-version: '3.x' # Specify your desired Python version
23
24
+ - name: Install gRPC tools
25
+ run: |
26
+ python3 -m pip install --upgrade pip
27
+ pip install grpcio-tools
28
29
+ - name: Run generate.sh
30
31
+ chmod +x ./generate.sh
32
+ ./generate.sh
0 commit comments