Subversion Repositories ESP8266_P1_Meter

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 raymond 1
name: Clang Format CI
2
on: [workflow_call, push]
3
jobs:
4
  formatting-check:
5
    name: Formatting Check
6
    runs-on: ubuntu-latest
7
    strategy:
8
      matrix:
9
        path:
10
          - 'espidf'
11
          - 'src'
12
    steps:
13
    - uses: actions/checkout@v6
14
    - name: Run clang-format style check for C/C++/Protobuf programs.
15
      uses: jidicula/clang-format-action@v4.11.0
16
      with:
17
        clang-format-version: '13'
18
        check-path: ${{ matrix.path }}