1name: Lint 2 3on: 4 push: 5 branches-ignore: 6 - 'main' 7 - 'docs' 8 9jobs: 10 clang-format: 11 12 runs-on: ubuntu-20.04 # latest 13 14 steps: 15 - name: Checkout Sources 16 uses: actions/checkout@v3 17 18 - name: clang-format lint 19 uses: DoozyX/clang-format-lint-action@v0.3.1 20 with: 21 # List of extensions to check 22 extensions: c,h 23 exclude: './cmake' 24