fix: Fix mode
enum being a number instead of a string in codegen
#192
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |