Skip to content

Commit

Permalink
Release (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyecusch authored Apr 6, 2023
2 parents ee428b5 + 6b6cf29 commit a74801d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ grpc-client: install download
@echo Generating Proto Sources
@echo $(OUTPUT)
@mkdir -p $(OUTPUT)
# protoc doesn't create the __init__.py for the nitric module, so we need to create it.
@mkdir -p $(OUTPUT)/nitric/
@touch $(OUTPUT)/nitric/__init__.py
@python3 -m grpc_tools.protoc -I $(CONTRACTS) --python_betterproto_out=$(OUTPUT) ./contracts/proto/*/*/*.proto


Expand All @@ -39,7 +42,7 @@ license:
@licenseheaders -t tools/apache-2.tmpl -o "Nitric Technologies Pty Ltd" -y 2021 -n "Nitric Python 3 SDK" -u "https://github.com/nitrictech/python-sdk" -d tests
@licenseheaders -t tools/apache-2.tmpl -o "Nitric Technologies Pty Ltd" -y 2021 -n "Nitric Python 3 SDK" -u "https://github.com/nitrictech/python-sdk" -d tools

build: clean install license docs
build: clean grpc-client license docs
@echo Building sdist and wheel
@python3 setup.py sdist bdist_wheel

Expand Down
Empty file added nitric/proto/nitric/__init__.py
Empty file.

0 comments on commit a74801d

Please sign in to comment.