From bd38c2de483aae6ceba61158b3462fa6574c501f Mon Sep 17 00:00:00 2001 From: Declan Teevan Date: Sun, 28 Sep 2025 23:29:31 +0100 Subject: [PATCH] ci: add buf format and linting workflow --- .github/workflows/protobuf-ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/protobuf-ci.yaml diff --git a/.github/workflows/protobuf-ci.yaml b/.github/workflows/protobuf-ci.yaml new file mode 100644 index 0000000..5def8e6 --- /dev/null +++ b/.github/workflows/protobuf-ci.yaml @@ -0,0 +1,20 @@ +name: Protobuf CI + +on: + push: + pull_request: + types: [opened, synchronize, reopened, labeled, unlabeled] + delete: + +permissions: + contents: read + pull-requests: write + +jobs: + buf: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: bufbuild/buf-action@v1 + with: + input: schema/protobufs \ No newline at end of file