Skip to content

Commit

Permalink
add protobuf workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Jun 7, 2024
1 parent 98dc86a commit d92d9c8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/protobuf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: protobuf

on:
pull_request:
workflow_dispatch:

jobs:
protobuf:
runs-on: ${{ matrix.os }}
timeout-minutes: 10

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install
run: |
brew install bufbuild/buf/buf
- name: Lint
run: |
buf lint cylc/flow/data_messages.proto
- name: Build
run: |
buf build cylc/flow/data_messages.proto

0 comments on commit d92d9c8

Please sign in to comment.