forked from massalabs/massa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Protobuf and gRPC (massalabs#3443)
Co-authored-by: modship <[email protected]> closes massalabs#3600 massalabs#3420 massalabs#3423 massalabs#3652 massalabs#3621 massalabs#3421 massalabs#3419 massalabs#3426 massalabs#3491 massalabs#3422 massalabs#3406 massalabs#3448
- Loading branch information
1 parent
8512742
commit 9a93440
Showing
66 changed files
with
8,948 additions
and
47 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
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 |
---|---|---|
|
@@ -16,6 +16,10 @@ env: | |
RUST_BACKTRACE: full | ||
RUSTFLAGS: "--deny warnings" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Quick tests on each commit/PR | ||
sanity: | ||
|
@@ -56,6 +60,10 @@ jobs: | |
with: | ||
shared-key: "check" | ||
save-if: ${{ github.ref_name == 'testnet_21' }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: '3.x' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
|
@@ -79,6 +87,10 @@ jobs: | |
with: | ||
shared-key: "clippy" | ||
save-if: ${{ github.ref_name == 'testnet_21' }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: '3.x' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -109,6 +121,10 @@ jobs: | |
with: | ||
shared-key: "massa" | ||
save-if: ${{ github.ref_name == 'testnet_21' }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: '3.x' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: install | ||
|
@@ -181,10 +197,14 @@ jobs: | |
with: | ||
shared-key: "doc" | ||
save-if: ${{ github.ref_name == 'testnet_21' }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: '3.x' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: doc | ||
args: --no-deps | ||
args: --no-deps --all-features --document-private-items | ||
- uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
|
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
Oops, something went wrong.