Skip to content

chore(deps): bump jidicula/clang-format-action from 4.11.0 to 4.13.0 … #170

chore(deps): bump jidicula/clang-format-action from 4.11.0 to 4.13.0 …

chore(deps): bump jidicula/clang-format-action from 4.11.0 to 4.13.0 … #170

Workflow file for this run

name: Validate C++
on:
push:
branches:
- main
paths:
- '.github/workflows/validate-cpp.yml'
- 'package/cpp/**'
- 'package/android/src/main/cpp/**'
- 'package/ios/**'
pull_request:
paths:
- '.github/workflows/validate-cpp.yml'
- 'package/cpp/**'
- 'package/android/src/main/cpp/**'
- 'package/ios/**'
jobs:
lint:
name: Check clang-format
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'package/cpp'
- 'package/android/src/main/cpp'
- 'package/ios'
steps:
- uses: actions/checkout@v4
- name: Run clang-format style check
uses: jidicula/clang-format-action@v4.13.0
with:
clang-format-version: '16'
check-path: ${{ matrix.path }}