summaryrefslogtreecommitdiffstats
path: root/.github/workflows/clang-format.yml
blob: 6154959a1c967e4feb5507ea6493c45d942178c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: clang-format-lint

on: [pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: DoozyX/clang-format-lint-action@v0.16.2
      with:
        source: './src'
        style: file
        clangFormatVersion: 14