You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
650 B
29 lines
650 B
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.13 |
|
with: |
|
source: "./app" |
|
extensions: "h,c"
|
|
|