fix: add GS1 DataBar and GS1 DataBar Expanded on iOS #2072
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/android/src/main/cpp/**' | |
- 'package/ios/**' | |
pull_request: | |
paths: | |
- '.github/workflows/validate-cpp.yml' | |
- 'package/android/src/main/cpp/**' | |
- 'package/ios/**' | |
jobs: | |
lint: | |
name: Check clang-format | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- 'package/android/src/main/cpp' | |
- 'package/ios' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run clang-format style check | |
uses: mrousavy/clang-format-action@v1 | |
with: | |
clang-format-version: '16' | |
check-path: ${{ matrix.path }} | |
clang-format-style-path: package/.clang-format | |