64a85b7a3f
Bumps [DoozyX/clang-format-lint-action](https://github.com/DoozyX/clang-format-lint-action) from v0.9 to v0.11. - [Release notes](https://github.com/DoozyX/clang-format-lint-action/releases) - [Commits](https://github.com/DoozyX/clang-format-lint-action/compare/v0.9...84b814a54950e27ac65a62069802df099405ef77) Signed-off-by: dependabot[bot] <support@github.com>
29 lines
650 B
YAML
29 lines
650 B
YAML
name: Clang Format
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".github/workflows/clang-format-lint.yml"
|
|
- "app/boards/**/*.c"
|
|
- "app/include/**/*.h"
|
|
- "app/src/**"
|
|
- "app/drivers/**/*.c"
|
|
- "app/drivers/**/*.h"
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/clang-format-lint.yml"
|
|
- "app/boards/**/*.c"
|
|
- "app/include/**/*.h"
|
|
- "app/src/**"
|
|
- "app/drivers/**/*.c"
|
|
- "app/drivers/**/*.h"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: DoozyX/clang-format-lint-action@v0.11
|
|
with:
|
|
source: "./app"
|
|
extensions: "h,c"
|