You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
453 B
YAML
17 lines
453 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-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DoozyX/clang-format-lint-action@v0.17
|
|
with:
|
|
source: '.'
|
|
exclude: './xmpsdk ./contrib'
|
|
extensions: 'c,h,cpp,hpp'
|
|
style: file
|