Bumps [DoozyX/clang-format-lint-action](https://github.com/DoozyX/clang-format-lint-action) from 0.14 to 0.15. - [Release notes](https://github.com/DoozyX/clang-format-lint-action/releases) - [Commits](https://github.com/DoozyX/clang-format-lint-action/compare/v0.14...v0.15) --- updated-dependencies: - dependency-name: DoozyX/clang-format-lint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
485 B
YAML
18 lines
485 B
YAML
name: Clang Format Checker
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
on: [push, pull_request]
|
|
jobs:
|
|
clang-format-checking:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: DoozyX/clang-format-lint-action@v0.15
|
|
with:
|
|
source: '.'
|
|
exclude: './xmpsdk ./contrib'
|
|
extensions: 'c,h,cpp,hpp'
|
|
clangFormatVersion: 12
|
|
style: file
|