-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* APIs are described in `/proto` using buf.build. * Generated code is stored under `a3m/api`. * Genearted docs can be found at https://buf.build/artefactual/a3m. * It includes a couple of CI workflows to validate PRs and push to the BSR.
- Loading branch information
Showing
30 changed files
with
797 additions
and
1,437 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Buf (pull request) | ||
on: pull_request | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: bufbuild/buf-setup-action@v1 | ||
- uses: bufbuild/buf-lint-action@v1 | ||
with: | ||
input: proto | ||
# - uses: bufbuild/buf-breaking-action@v1 | ||
# with: | ||
# input: proto | ||
# against: 'https://github.com/${GITHUB_REPOSITORY}.git#branch=main' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Buf (push) | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: bufbuild/buf-setup-action@v1 | ||
- uses: bufbuild/buf-lint-action@v1 | ||
with: | ||
input: proto | ||
# - uses: bufbuild/buf-breaking-action@v1 | ||
# with: | ||
# input: proto | ||
# against: 'https://github.com/${GITHUB_REPOSITORY}.git#branch=main' | ||
- uses: bufbuild/buf-push-action@v1 | ||
with: | ||
input: proto | ||
buf_token: ${{ secrets.BUF_TOKEN }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from . import request_response_pb2 | ||
from . import request_response_pb2_grpc | ||
from . import service_pb2 | ||
from . import service_pb2_grpc | ||
|
||
|
||
__all__ = [ | ||
"request_response_pb2_grpc", | ||
"request_response_pb2", | ||
"service_pb2_grpc", | ||
"service_pb2", | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.