tools: remove need to install buf (#4605)

* 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
This commit is contained in:
Marko
2020-03-27 06:47:39 +01:00
committed by GitHub
parent a25faed5f0
commit b14c0e579e
6 changed files with 21 additions and 39 deletions

12
.github/workflows/proto.yml vendored Normal file
View File

@@ -0,0 +1,12 @@
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