mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-05 11:31:16 +00:00
* tools: remove need to install buf - using buf docker image instead of needing devs to install it Signed-off-by: Marko Baricevic <marbar3778@yahoo.com> * fix ci for lint and break checking
13 lines
312 B
YAML
13 lines
312 B
YAML
name: Proto check
|
|
on: [pull_request]
|
|
jobs:
|
|
proto-checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: docker-practice/actions-setup-docker@master
|
|
- name: lint
|
|
run: make proto-lint
|
|
- name: check-breakage
|
|
run: make proto-check-breaking-ci
|