Skip to content

proto: add CI

proto: add CI #1

Workflow file for this run

name: lint
on:
push:
branches:
- master
tags:
- '**'
pull_request:
workflow_dispatch:
jobs:
protobuf:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install clang-format
run: |
apt-get update
apt-get -y install clang-format
- name: Checking protobuf syntax
run: clang-format --dry-run --verbose -Werror proto/*.proto