build(deps)!: bump cosmos sdk to v0.50.3 #2020
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
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 |