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.
2 parents fb4c80a + 9709e8d commit bbfb08dCopy full SHA for bbfb08d
.github/workflows/test.yaml
@@ -7,7 +7,7 @@ on:
7
pull_request:
8
9
jobs:
10
- build:
+ test:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
makefile
@@ -30,6 +30,9 @@ grpc-client: install download
30
@echo Generating Proto Sources
31
@echo $(OUTPUT)
32
@mkdir -p $(OUTPUT)
33
+ # protoc doesn't create the __init__.py for the nitric module, so we need to create it.
34
+ @mkdir -p $(OUTPUT)/nitric/
35
+ @touch $(OUTPUT)/nitric/__init.py__
36
@python3 -m grpc_tools.protoc -I $(CONTRACTS) --python_betterproto_out=$(OUTPUT) ./contracts/proto/*/*/*.proto
37
38
nitric/proto/nitric/__init.py__
0 commit comments