Cancel ci if no .go files have been touched. There is no clean way of doing this so i opted to `exit 1` on the diff job if no go files were changed and have builds depend on diff passing - migrate proto checks to github actions. - providing make commands to use buf within docker. - test-sim-multi-seed-long migration to github actions. Follows same logic and only runs on release branches. - add protobuf section to CONTRIBUTING.md.
15 lines
232 B
Protocol Buffer
15 lines
232 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmos_sdk.codec.v1;
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/codec/testdata";
|
|
|
|
message Dog {
|
|
string size = 1;
|
|
string name = 2;
|
|
}
|
|
|
|
message Cat {
|
|
string moniker = 1;
|
|
int32 lives = 2;
|
|
}
|