mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 07:03:58 -05:00
22 lines
491 B
YAML
22 lines
491 B
YAML
name: Protobuf Format
|
|
|
|
on:
|
|
push:
|
|
branches: [ '*' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
merge_group:
|
|
types: [checks_requested]
|
|
|
|
jobs:
|
|
clang-format-checking:
|
|
runs-on: ubuntu-4
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
# Is this step failing for you?
|
|
# Run: clang-format -i proto/**/*.proto
|
|
# See: https://clang.llvm.org/docs/ClangFormat.html
|
|
- uses: RafikFarhad/clang-format-github-action@v3
|
|
with:
|
|
sources: "proto/**/*.proto"
|