Fix segmentation fault when matching regex string against non-string … #123
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: Run lint check with clang-format | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout jsonpath | |
uses: actions/checkout@v4 | |
- name: Perform linting | |
uses: DoozyX/clang-format-lint-action@v0.18 | |
with: | |
source: './jsonpath.c ./php_jsonpath.h ./src/jsonpath' | |
extensions: 'c,h' | |
clangFormatVersion: 12 |