aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/clang-format-lint.yml
blob: 328fe36cc7bc26554270a1d9e1361fcee4c718ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: clang-format-lint
on:
  push: {}
  pull_request: {}

jobs:
  job:
    name: check-clang-format
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - uses: DoozyX/clang-format-lint-action@v0.13
      with:
        source: './include/benchmark ./src ./test'
        extensions: 'h,cc'
        clangFormatVersion: 12
        style: Google