We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9623b9e commit 6a63354Copy full SHA for 6a63354
.github/workflows/ci.yml
@@ -16,3 +16,17 @@ jobs:
16
- name: Check if the git repository is clean
17
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
18
- run: npm run lint
19
+ clang:
20
+ name: Clang-Format Check
21
+ runs-on: ubuntu-latest
22
+ strategy:
23
+ matrix:
24
+ path:
25
+ - 'ios'
26
+ - 'android'
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+ - uses: jidicula/[email protected]
30
+ with:
31
+ clang-format-version: '17'
32
+ include-regex: '^.*(\.h|\.m|\.java)'
0 commit comments