-
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.
- Loading branch information
Showing
18 changed files
with
63 additions
and
1,283 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: 'go.mod' | ||
- run: | ||
go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
file: ./coverage.txt | ||
verbose: true | ||
#on: [push] | ||
#jobs: | ||
# build: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version-file: 'go.mod' | ||
# - run: | ||
# go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... | ||
# - uses: codecov/codecov-action@v3 | ||
# with: | ||
# file: ./coverage.txt | ||
# verbose: true |
File renamed without changes.
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,16 @@ | ||
syntax = "proto3"; | ||
|
||
package comment; | ||
option go_package="./comment"; | ||
|
||
message Request { | ||
string ping = 1; | ||
} | ||
|
||
message Response { | ||
string pong = 1; | ||
} | ||
|
||
service Comment { | ||
rpc Ping(Request) returns(Response); | ||
} |
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,16 @@ | ||
syntax = "proto3"; | ||
|
||
package page; | ||
option go_package="./page"; | ||
|
||
message Request { | ||
string ping = 1; | ||
} | ||
|
||
message Response { | ||
string pong = 1; | ||
} | ||
|
||
service Page { | ||
rpc Ping(Request) returns(Response); | ||
} |
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,16 @@ | ||
syntax = "proto3"; | ||
|
||
package post; | ||
option go_package="./post"; | ||
|
||
message Request { | ||
string ping = 1; | ||
} | ||
|
||
message Response { | ||
string pong = 1; | ||
} | ||
|
||
service Post { | ||
rpc Ping(Request) returns(Response); | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.