mirror of
https://github.com/google/benchmark.git
synced 2024-11-26 07:32:19 +00:00
18 lines
338 B
YAML
18 lines
338 B
YAML
name: clang-format-lint
|
|
on:
|
|
push: {}
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
build:
|
|
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
|