diff --git a/.github/workflows/protoc.yaml b/.github/workflows/protoc.yaml new file mode 100644 index 0000000..4db7e78 --- /dev/null +++ b/.github/workflows/protoc.yaml @@ -0,0 +1,17 @@ +name: protoc + +on: + pull_request: + branches: [ '*' ] + +jobs: + test-protoc: + runs-on: ubuntu-latest + steps: + - name: checkout source + uses: actions/checkout@v2 + + - name: generate go libs using protoc + run: | + make build + make check-changes