mirror of
https://github.com/estkme-group/lpac
synced 2025-08-18 10:03:02 +02:00
18 lines
376 B
YAML
18 lines
376 B
YAML
name: clang-format Check
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
formatting-check:
|
|
name: Formatting Check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Run clang-format style check.
|
|
uses: jidicula/clang-format-action@v4.15.0
|
|
with:
|
|
clang-format-version: "20"
|
|
exclude-regex: "(cjson|dlfcn-win32)/.*"
|