Skip to content

build(deps)!: bump cosmos sdk to v0.50.3 #2020

build(deps)!: bump cosmos sdk to v0.50.3

build(deps)!: bump cosmos sdk to v0.50.3 #2020

Workflow file for this run

name: Protobuf
# Protobuf runs buf (https://buf.build/) lint and check-breakage.
# This workflow is only run when a .proto file has been changed
# This will be useful when switching to Protobuf serialization.
on:
pull_request:
paths:
- "**.proto"
jobs:
Lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Lint ✅
run: sudo make proto-lint
Breakage:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Check breakage ✅
run: sudo make proto-check-breaking