mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2024-12-12 18:10:27 +01:00
20 lines
484 B
YAML
20 lines
484 B
YAML
name: clang-format check
|
|
on: [push, pull_request]
|
|
jobs:
|
|
formatting-check:
|
|
name: formatting check
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
path:
|
|
- 'src'
|
|
- 'examples'
|
|
- 'include'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: runs clang-format style check for C/C++/Protobuf programs.
|
|
uses: jidicula/clang-format-action@v4.13.0
|
|
with:
|
|
clang-format-version: '18'
|
|
check-path: ${{ matrix.path }}
|